├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── Procfile ├── bundler └── openai │ ├── dist │ ├── bundle.min.js │ ├── bundle.min.js.LICENSE.txt │ └── bundle.min.js.map │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── webpack.config.js ├── git_images ├── application.png ├── electron.png ├── embedded.png ├── gifs │ ├── extension_addNewOrg.gif │ ├── extension_apexScript.gif │ ├── extension_apiExplorer.gif │ ├── extension_customContentScriptRegex.gif │ ├── extension_open.gif │ ├── extension_openDB.gif │ ├── extension_pin.gif │ └── extension_quickEdit.gif ├── orgManagement.png ├── recordEdit.png ├── sidePanel.png ├── welcome copy.png └── welcome.png ├── jsconfig.json ├── lwr.config.json ├── manifest.json ├── package.json ├── privacy.md ├── readme.md ├── refactor-docs ├── command-k-prompt-editor.md ├── connection-module-refactor-plan.md └── vite-migration-chrome-extension.md ├── rollup.config.mjs ├── scripts ├── files │ ├── chevrotain_render_public_dummy.js │ └── primitiveIcon │ │ └── primitiveIcon.js ├── fix_lightning.js ├── generateReleaseNotesJson.js ├── generate_metadata.js └── load_documentation.js ├── src ├── client │ ├── assets │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── checkbox_checked.gif │ │ │ ├── checkbox_unchecked.gif │ │ │ ├── closed.gif │ │ │ ├── list.gif │ │ │ ├── open.gif │ │ │ └── sfdx_gui.png │ │ ├── libs │ │ │ ├── jsforce │ │ │ │ └── jsforce.js │ │ │ ├── jspdf │ │ │ │ ├── jspdf.es.js │ │ │ │ └── jspdf.plugin.autotable.js │ │ │ ├── jszip │ │ │ │ └── jszip.min.js │ │ │ ├── localforage │ │ │ │ ├── drivers │ │ │ │ │ └── chrome.js │ │ │ │ └── localforage.min.js │ │ │ ├── mermaid │ │ │ │ └── mermaid.min.js │ │ │ ├── monaco │ │ │ │ ├── monaco.bundle.js │ │ │ │ └── workers │ │ │ │ │ ├── editor.worker.js │ │ │ │ │ └── json.worker.js │ │ │ ├── openai │ │ │ │ └── bundle.min.js │ │ │ ├── openapi-parser │ │ │ │ ├── openapi-parser.esm.min.js │ │ │ │ └── openapi-parser.esm.min.js.map │ │ │ ├── prism │ │ │ │ └── prism.js │ │ │ ├── require │ │ │ │ └── require.js │ │ │ └── workers │ │ │ │ ├── accessAnalyzer.worker.js │ │ │ │ ├── accessAnalyzer.worker.js.map │ │ │ │ ├── metadata.worker.js │ │ │ │ └── metadata.worker.js.map │ │ ├── releaseNotes.json │ │ ├── styles │ │ │ ├── algolia.css │ │ │ ├── codicon.ttf │ │ │ ├── dashboard.css │ │ │ ├── extension.css │ │ │ ├── highlight.css │ │ │ ├── inject.css │ │ │ ├── monaco.css │ │ │ ├── popup.css │ │ │ ├── prism.css │ │ │ ├── seti.hash.woff │ │ │ ├── slds-sf-toolkit.css │ │ │ ├── tabulator.light.min.css │ │ │ ├── tabulator.min.css │ │ │ └── web.css │ │ └── templates │ │ │ └── manifests │ │ │ └── package.xml │ ├── content │ │ └── home.html │ ├── hooks │ │ ├── application-hook.js │ │ └── cta-hook.js │ ├── layouts │ │ ├── cta.html │ │ ├── home.html │ │ ├── install.html │ │ └── main.html │ ├── lwc │ │ ├── applications │ │ │ ├── documentation │ │ │ │ ├── cta │ │ │ │ │ ├── app │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ ├── app.html │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── basicSearch │ │ │ │ │ │ ├── basicSearch.css │ │ │ │ │ │ ├── basicSearch.html │ │ │ │ │ │ └── basicSearch.js │ │ │ │ │ ├── markdownMenu │ │ │ │ │ │ ├── markdownMenu.css │ │ │ │ │ │ ├── markdownMenu.html │ │ │ │ │ │ ├── markdownMenu.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── markdownViewer │ │ │ │ │ │ ├── markdownViewer.css │ │ │ │ │ │ ├── markdownViewer.html │ │ │ │ │ │ └── markdownViewer.js │ │ │ │ │ └── paginator │ │ │ │ │ │ ├── paginator.css │ │ │ │ │ │ ├── paginator.html │ │ │ │ │ │ └── paginator.js │ │ │ │ └── doc │ │ │ │ │ └── app │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ ├── einstein │ │ │ │ ├── agent │ │ │ │ │ ├── agents │ │ │ │ │ │ ├── agents.js │ │ │ │ │ │ ├── apexAgent.js │ │ │ │ │ │ ├── generalAgent.js │ │ │ │ │ │ ├── loggedInAgent.js │ │ │ │ │ │ ├── loggedOutAgent.js │ │ │ │ │ │ └── sharedInstructions.js │ │ │ │ │ ├── app │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ ├── app.html │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── audioRecorder │ │ │ │ │ │ ├── audioRecorder.css │ │ │ │ │ │ ├── audioRecorder.html │ │ │ │ │ │ └── audioRecorder.js │ │ │ │ │ ├── message │ │ │ │ │ │ ├── message.css │ │ │ │ │ │ ├── message.html │ │ │ │ │ │ └── message.js │ │ │ │ │ ├── messageList │ │ │ │ │ │ ├── messageList.html │ │ │ │ │ │ └── messageList.js │ │ │ │ │ ├── publisher │ │ │ │ │ │ ├── publisher.css │ │ │ │ │ │ ├── publisher.html │ │ │ │ │ │ └── publisher.js │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── _fake.js │ │ │ │ │ │ ├── apex.js │ │ │ │ │ │ ├── api.js │ │ │ │ │ │ ├── chrome.js │ │ │ │ │ │ ├── connections.js │ │ │ │ │ │ ├── general.js │ │ │ │ │ │ ├── metadata.js │ │ │ │ │ │ ├── soql.js │ │ │ │ │ │ ├── tools.js │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── _fake.js │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── context.js │ │ │ │ │ │ ├── streamingAgentService.js │ │ │ │ │ │ └── utils.js │ │ │ │ └── assistant │ │ │ │ │ ├── app │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ │ ├── audioRecorder │ │ │ │ │ ├── audioRecorder.css │ │ │ │ │ ├── audioRecorder.html │ │ │ │ │ └── audioRecorder.js │ │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog.html │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── message │ │ │ │ │ ├── message.css │ │ │ │ │ ├── message.html │ │ │ │ │ └── message.js │ │ │ │ │ ├── saveModal │ │ │ │ │ ├── saveModal.html │ │ │ │ │ └── saveModal.js │ │ │ │ │ └── utils │ │ │ │ │ ├── template.js │ │ │ │ │ └── utils.js │ │ │ ├── explorers │ │ │ │ ├── metadata │ │ │ │ │ ├── app │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ ├── app.html │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── menu.css │ │ │ │ │ │ ├── menu.html │ │ │ │ │ │ └── menu.js │ │ │ │ │ ├── structureViewer │ │ │ │ │ │ ├── structureViewer.html │ │ │ │ │ │ └── structureViewer.js │ │ │ │ │ ├── structureViewerItem │ │ │ │ │ │ ├── structureViewerItem.css │ │ │ │ │ │ ├── structureViewerItem.html │ │ │ │ │ │ └── structureViewerItem.js │ │ │ │ │ ├── viewer │ │ │ │ │ │ ├── viewer.css │ │ │ │ │ │ ├── viewer.html │ │ │ │ │ │ └── viewer.js │ │ │ │ │ └── viewerValue │ │ │ │ │ │ ├── viewerValue.css │ │ │ │ │ │ ├── viewerValue.html │ │ │ │ │ │ └── viewerValue.js │ │ │ │ ├── object │ │ │ │ │ ├── app │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ ├── app.html │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── sobject │ │ │ │ │ │ ├── sobject.css │ │ │ │ │ │ ├── sobject.html │ │ │ │ │ │ └── sobject.js │ │ │ │ │ └── sobjectCell │ │ │ │ │ │ ├── sobjectCell.css │ │ │ │ │ │ ├── sobjectCell.html │ │ │ │ │ │ └── sobjectCell.js │ │ │ │ ├── org │ │ │ │ │ ├── app │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ ├── app.html │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── code │ │ │ │ │ │ ├── code.html │ │ │ │ │ │ └── code.js │ │ │ │ │ ├── company │ │ │ │ │ │ ├── company.css │ │ │ │ │ │ ├── company.html │ │ │ │ │ │ └── company.js │ │ │ │ │ ├── me │ │ │ │ │ │ ├── me.css │ │ │ │ │ │ ├── me.html │ │ │ │ │ │ └── me.js │ │ │ │ │ ├── users │ │ │ │ │ │ ├── users.css │ │ │ │ │ │ ├── users.html │ │ │ │ │ │ └── users.js │ │ │ │ │ └── utilization │ │ │ │ │ │ ├── utilization.html │ │ │ │ │ │ └── utilization.js │ │ │ │ └── recordviewer │ │ │ │ │ ├── app │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ │ ├── recordExplorer │ │ │ │ │ ├── recordExplorer.css │ │ │ │ │ ├── recordExplorer.html │ │ │ │ │ └── recordExplorer.js │ │ │ │ │ ├── recordExplorerCell │ │ │ │ │ ├── recordExplorerCell.css │ │ │ │ │ ├── recordExplorerCell.html │ │ │ │ │ └── recordExplorerCell.js │ │ │ │ │ └── recordExplorerRow │ │ │ │ │ ├── recordExplorerRow.css │ │ │ │ │ ├── recordExplorerRow.html │ │ │ │ │ └── recordExplorerRow.js │ │ │ └── tools │ │ │ │ ├── accessAnalyzer │ │ │ │ ├── app │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ ├── modalPermissionSelector │ │ │ │ │ ├── modalProfileSelector.html │ │ │ │ │ └── modalProfileSelector.js │ │ │ │ ├── modalPermissionSetFilter │ │ │ │ │ ├── modalPermissionSetFilter.html │ │ │ │ │ └── modalPermissionSetFilter.js │ │ │ │ ├── modalProfileFilter │ │ │ │ │ ├── modalProfileFilter.html │ │ │ │ │ └── modalProfileFilter.js │ │ │ │ └── utils │ │ │ │ │ └── utils.js │ │ │ │ ├── anonymousApex │ │ │ │ └── app │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ ├── api │ │ │ │ ├── apiSchemaImportModal │ │ │ │ │ ├── apiSchemaImportModal.css │ │ │ │ │ ├── apiSchemaImportModal.html │ │ │ │ │ └── apiSchemaImportModal.js │ │ │ │ ├── apiTreePanel │ │ │ │ │ ├── apiTreePanel.html │ │ │ │ │ └── apiTreePanel.js │ │ │ │ ├── app │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ └── header │ │ │ │ │ ├── header.css │ │ │ │ │ ├── header.html │ │ │ │ │ └── header.js │ │ │ │ ├── code │ │ │ │ ├── analyzer │ │ │ │ │ ├── analyzer.html │ │ │ │ │ └── analyzer.js │ │ │ │ ├── app │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ ├── pmd │ │ │ │ │ ├── pmd.css │ │ │ │ │ ├── pmd.html │ │ │ │ │ └── pmd.js │ │ │ │ └── sfdxScanner │ │ │ │ │ ├── sfdxScanner.css │ │ │ │ │ ├── sfdxScanner.html │ │ │ │ │ ├── sfdxScanner.js │ │ │ │ │ └── theme.js │ │ │ │ ├── package │ │ │ │ ├── app │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ ├── deploy │ │ │ │ │ ├── deploy.css │ │ │ │ │ ├── deploy.html │ │ │ │ │ └── deploy.js │ │ │ │ ├── deployList │ │ │ │ │ ├── deployList.css │ │ │ │ │ ├── deployList.html │ │ │ │ │ └── deployList.js │ │ │ │ ├── deployListItem │ │ │ │ │ ├── deployListItem.css │ │ │ │ │ ├── deployListItem.html │ │ │ │ │ └── deployListItem.js │ │ │ │ ├── modalDeploy │ │ │ │ │ ├── modalDeploy.css │ │ │ │ │ ├── modalDeploy.html │ │ │ │ │ └── modalDeploy.js │ │ │ │ ├── retrieve │ │ │ │ │ ├── retrieve.html │ │ │ │ │ └── retrieve.js │ │ │ │ └── utils │ │ │ │ │ └── utils.js │ │ │ │ ├── platformevent │ │ │ │ ├── app │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ ├── editorModal │ │ │ │ │ ├── editorModal.html │ │ │ │ │ └── editorModal.js │ │ │ │ ├── eventViewer │ │ │ │ │ ├── eventViewer.css │ │ │ │ │ ├── eventViewer.html │ │ │ │ │ └── eventViewer.js │ │ │ │ ├── message │ │ │ │ │ ├── message.css │ │ │ │ │ ├── message.html │ │ │ │ │ └── message.js │ │ │ │ ├── messageList │ │ │ │ │ ├── messageList.css │ │ │ │ │ ├── messageList.html │ │ │ │ │ └── messageList.js │ │ │ │ └── utils │ │ │ │ │ ├── replayExtension.js │ │ │ │ │ └── utils.js │ │ │ │ ├── smartinput │ │ │ │ ├── app │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ ├── composer │ │ │ │ │ ├── composer.css │ │ │ │ │ ├── composer.html │ │ │ │ │ └── composer.js │ │ │ │ ├── item │ │ │ │ │ ├── item.css │ │ │ │ │ ├── item.html │ │ │ │ │ └── item.js │ │ │ │ └── utils │ │ │ │ │ └── utils.js │ │ │ │ └── soql │ │ │ │ ├── app │ │ │ │ ├── app.css │ │ │ │ ├── app.html │ │ │ │ ├── app.js │ │ │ │ └── util.js │ │ │ │ ├── fieldsPanel │ │ │ │ ├── fieldsPanel.css │ │ │ │ ├── fieldsPanel.html │ │ │ │ └── fieldsPanel.js │ │ │ │ ├── fieldsTree │ │ │ │ ├── fieldsTree.css │ │ │ │ ├── fieldsTree.html │ │ │ │ └── fieldsTree.js │ │ │ │ ├── header │ │ │ │ ├── header.css │ │ │ │ ├── header.html │ │ │ │ └── header.js │ │ │ │ ├── outputCell │ │ │ │ ├── outputCell.css │ │ │ │ ├── outputCell.html │ │ │ │ └── outputCell.js │ │ │ │ ├── outputPanel │ │ │ │ ├── outputPanel.css │ │ │ │ ├── outputPanel.html │ │ │ │ └── outputPanel.js │ │ │ │ ├── outputTable │ │ │ │ ├── outputTable.css │ │ │ │ ├── outputTable.html │ │ │ │ └── outputTable.js │ │ │ │ ├── performanceModal │ │ │ │ ├── performanceModal.css │ │ │ │ ├── performanceModal.html │ │ │ │ └── performanceModal.js │ │ │ │ ├── queryEditorPanel │ │ │ │ ├── queryEditorPanel.css │ │ │ │ ├── queryEditorPanel.html │ │ │ │ └── queryEditorPanel.js │ │ │ │ ├── relationshipsTree │ │ │ │ ├── relationshipsTree.css │ │ │ │ ├── relationshipsTree.html │ │ │ │ └── relationshipsTree.js │ │ │ │ └── sobjectPanel │ │ │ │ ├── sobjectPanel.css │ │ │ │ ├── sobjectPanel.html │ │ │ │ └── sobjectPanel.js │ │ ├── components │ │ │ ├── builder │ │ │ │ ├── editor │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor.html │ │ │ │ │ ├── editor.js │ │ │ │ │ ├── editorLabels.js │ │ │ │ │ └── hotkeysmanager.js │ │ │ │ ├── header │ │ │ │ │ ├── header.css │ │ │ │ │ ├── header.html │ │ │ │ │ └── header.js │ │ │ │ ├── leftPanel │ │ │ │ │ ├── leftPanel.css │ │ │ │ │ ├── leftPanel.html │ │ │ │ │ └── leftPanel.js │ │ │ │ ├── rightPanel │ │ │ │ │ ├── rightPanel.css │ │ │ │ │ ├── rightPanel.html │ │ │ │ │ └── rightPanel.js │ │ │ │ ├── saveModal │ │ │ │ │ ├── saveModal.html │ │ │ │ │ └── saveModal.js │ │ │ │ ├── storagePanel │ │ │ │ │ ├── storagePanel.css │ │ │ │ │ ├── storagePanel.html │ │ │ │ │ └── storagePanel.js │ │ │ │ └── toolbar │ │ │ │ │ ├── toolbar.html │ │ │ │ │ └── toolbar.js │ │ │ ├── dashboard │ │ │ │ ├── basicStats │ │ │ │ │ ├── basicStats.html │ │ │ │ │ └── basicStats.js │ │ │ │ └── horizontalRank │ │ │ │ │ ├── horizontalRank.html │ │ │ │ │ └── horizontalRank.js │ │ │ ├── editor │ │ │ │ ├── app │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.html │ │ │ │ │ └── app.js │ │ │ │ ├── default │ │ │ │ │ ├── default.css │ │ │ │ │ ├── default.html │ │ │ │ │ └── default.js │ │ │ │ ├── editorCompleteWidget │ │ │ │ │ ├── editorCompleteWidget.css │ │ │ │ │ ├── editorCompleteWidget.html │ │ │ │ │ ├── editorCompleteWidget.js │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── codeExtract.js │ │ │ │ │ │ ├── hotkeysmanager.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ └── widget │ │ │ │ │ │ └── monacoLwcWidget.js │ │ │ │ ├── fileTree │ │ │ │ │ ├── fileTree.css │ │ │ │ │ ├── fileTree.html │ │ │ │ │ └── fileTree.js │ │ │ │ ├── languages │ │ │ │ │ ├── apex.js │ │ │ │ │ ├── apexLog.js │ │ │ │ │ ├── languages.js │ │ │ │ │ ├── soql.js │ │ │ │ │ ├── soqlParser.js │ │ │ │ │ ├── suggestion.js │ │ │ │ │ └── visualforce.js │ │ │ │ ├── modal │ │ │ │ │ ├── modal.html │ │ │ │ │ └── modal.js │ │ │ │ ├── promptWidget │ │ │ │ │ ├── promptWidget.css │ │ │ │ │ ├── promptWidget.html │ │ │ │ │ └── promptWidget.js │ │ │ │ ├── soql │ │ │ │ │ ├── instructions │ │ │ │ │ │ └── instructions.js │ │ │ │ │ ├── soql.css │ │ │ │ │ ├── soql.html │ │ │ │ │ └── soql.js │ │ │ │ └── utils │ │ │ │ │ └── utils.js │ │ │ ├── illustration │ │ │ │ ├── connection │ │ │ │ │ ├── connection.html │ │ │ │ │ └── connection.js │ │ │ │ ├── default │ │ │ │ │ ├── default.html │ │ │ │ │ └── default.js │ │ │ │ ├── empty │ │ │ │ │ ├── empty.html │ │ │ │ │ └── empty.js │ │ │ │ ├── illustration │ │ │ │ │ └── illustration.js │ │ │ │ └── research │ │ │ │ │ ├── research.html │ │ │ │ │ └── research.js │ │ │ └── slds │ │ │ │ ├── MarkdownViewerEditorModal │ │ │ │ ├── MarkdownViewerEditorModal.html │ │ │ │ └── MarkdownViewerEditorModal.js │ │ │ │ ├── codeBlock │ │ │ │ ├── codeBlock.css │ │ │ │ ├── codeBlock.html │ │ │ │ └── codeBlock.js │ │ │ │ ├── field │ │ │ │ ├── field.css │ │ │ │ ├── field.html │ │ │ │ └── field.js │ │ │ │ ├── fieldDependencyManager │ │ │ │ └── fieldDependencyManager.js │ │ │ │ ├── fieldLight │ │ │ │ ├── fieldLight.css │ │ │ │ ├── fieldLight.html │ │ │ │ └── fieldLight.js │ │ │ │ ├── fileTree │ │ │ │ ├── fileTree.html │ │ │ │ ├── fileTree.js │ │ │ │ ├── filleTree.css │ │ │ │ └── utils.js │ │ │ │ ├── fileTreeItem │ │ │ │ ├── fileTreeItem.css │ │ │ │ ├── fileTreeItem.html │ │ │ │ ├── fileTreeItem.js │ │ │ │ └── utils.js │ │ │ │ ├── fileUploader │ │ │ │ ├── fileUploader.css │ │ │ │ ├── fileUploader.html │ │ │ │ └── fileUploader.js │ │ │ │ ├── hashtagDropdown │ │ │ │ ├── hashtagDropdown.css │ │ │ │ ├── hashtagDropdown.html │ │ │ │ └── hashtagDropdown.js │ │ │ │ ├── informationBlock │ │ │ │ ├── informationBlock.css │ │ │ │ ├── informationBlock.html │ │ │ │ └── informationBlock.js │ │ │ │ ├── inputField │ │ │ │ ├── dependencyUtils.js │ │ │ │ ├── fieldUtils.js │ │ │ │ ├── inputField.html │ │ │ │ └── inputField.js │ │ │ │ ├── listBuilder │ │ │ │ ├── listBuilder.css │ │ │ │ ├── listBuilder.html │ │ │ │ └── listBuilder.js │ │ │ │ ├── listBuilderCellSelection │ │ │ │ ├── listBuilderCellSelection.html │ │ │ │ └── listBuilderCellSelection.js │ │ │ │ ├── listBuilderCustomDatatable │ │ │ │ ├── customSelectionCellTemplate.html │ │ │ │ ├── listBuilderCustomDatatable.html │ │ │ │ └── listBuilderCustomDatatable.js │ │ │ │ ├── lookup │ │ │ │ ├── lookup.css │ │ │ │ ├── lookup.html │ │ │ │ └── lookup.js │ │ │ │ ├── markdownViewer │ │ │ │ ├── markdownViewer.css │ │ │ │ ├── markdownViewer.html │ │ │ │ └── markdownViewer.js │ │ │ │ ├── menu │ │ │ │ ├── menu.css │ │ │ │ ├── menu.html │ │ │ │ └── menu.js │ │ │ │ ├── menuItem │ │ │ │ ├── menuItem.css │ │ │ │ ├── menuItem.html │ │ │ │ └── menuItem.js │ │ │ │ ├── modal │ │ │ │ ├── modal.css │ │ │ │ ├── modal.html │ │ │ │ └── modal.js │ │ │ │ ├── modalUserSelector │ │ │ │ ├── modalUserSelector.css │ │ │ │ ├── modalUserSelector.html │ │ │ │ └── modalUserSelector.js │ │ │ │ ├── notify │ │ │ │ ├── notify.css │ │ │ │ ├── notify.html │ │ │ │ └── notify.js │ │ │ │ ├── paginator │ │ │ │ ├── paginator.css │ │ │ │ ├── paginator.html │ │ │ │ └── paginator.js │ │ │ │ ├── previewIllustration │ │ │ │ ├── previewIllustration.html │ │ │ │ └── previewIllustration.js │ │ │ │ ├── requireConnection │ │ │ │ ├── requireConnection.css │ │ │ │ ├── requireConnection.html │ │ │ │ └── requireConnection.js │ │ │ │ ├── searchableCombobox │ │ │ │ ├── searchableCombobox.html │ │ │ │ └── searchableCombobox.js │ │ │ │ ├── shortcutSelector │ │ │ │ ├── shortcutSelector.html │ │ │ │ └── shortcutSelector.js │ │ │ │ ├── spinner │ │ │ │ ├── spinner.css │ │ │ │ ├── spinner.html │ │ │ │ ├── spinner.js │ │ │ │ └── spinner.js-meta.xml │ │ │ │ ├── splitView │ │ │ │ ├── splitView.css │ │ │ │ ├── splitView.html │ │ │ │ └── splitView.js │ │ │ │ ├── stencil │ │ │ │ ├── stencil.css │ │ │ │ ├── stencil.html │ │ │ │ └── stencil.js │ │ │ │ ├── structureViewer │ │ │ │ ├── structureViewer.html │ │ │ │ └── structureViewer.js │ │ │ │ ├── structureViewerItem │ │ │ │ ├── structureViewerItem.css │ │ │ │ ├── structureViewerItem.html │ │ │ │ └── structureViewerItem.js │ │ │ │ ├── tab │ │ │ │ ├── tab.css │ │ │ │ ├── tab.html │ │ │ │ └── tab.js │ │ │ │ ├── tabBar │ │ │ │ ├── keyboard.js │ │ │ │ ├── tabBar.css │ │ │ │ ├── tabBar.html │ │ │ │ └── tabBar.js │ │ │ │ ├── tabset │ │ │ │ ├── tabset.css │ │ │ │ ├── tabset.html │ │ │ │ └── tabset.js │ │ │ │ └── verticalPanel │ │ │ │ ├── verticalPanel.css │ │ │ │ ├── verticalPanel.html │ │ │ │ └── verticalPanel.js │ │ └── modules │ │ │ ├── ai │ │ │ ├── assistants │ │ │ │ ├── assistants.js │ │ │ │ └── classes │ │ │ │ │ └── assistant.js │ │ │ ├── functions │ │ │ │ └── functions.js │ │ │ └── utils │ │ │ │ └── utils.js │ │ │ ├── connection │ │ │ ├── app │ │ │ │ ├── app.css │ │ │ │ ├── app.html │ │ │ │ └── app.js │ │ │ ├── callback │ │ │ │ ├── callback.html │ │ │ │ └── callback.js │ │ │ ├── card │ │ │ │ ├── card.css │ │ │ │ ├── card.html │ │ │ │ └── card.js │ │ │ ├── cardItem │ │ │ │ ├── cardItem.css │ │ │ │ ├── cardItem.html │ │ │ │ └── cardItem.js │ │ │ ├── connectionDetailModal │ │ │ │ ├── connectionDetailModal.css │ │ │ │ ├── connectionDetailModal.html │ │ │ │ └── connectionDetailModal.js │ │ │ ├── connectionImportModal │ │ │ │ ├── connectionImportModal.css │ │ │ │ ├── connectionImportModal.html │ │ │ │ └── connectionImportModal.js │ │ │ ├── connectionManualModal │ │ │ │ ├── connectionManualModal.css │ │ │ │ ├── connectionManualModal.html │ │ │ │ └── connectionManualModal.js │ │ │ ├── connectionNewModal │ │ │ │ ├── connectionNewModal.css │ │ │ │ ├── connectionNewModal.html │ │ │ │ └── connectionNewModal.js │ │ │ ├── quickAuthorize │ │ │ │ ├── quickAuthorize.html │ │ │ │ └── quickAuthorize.js │ │ │ └── utils │ │ │ │ ├── chrome.js │ │ │ │ ├── connectorClass.js │ │ │ │ ├── credentialStrategies │ │ │ │ ├── index.js │ │ │ │ ├── oauth.js │ │ │ │ ├── session.js │ │ │ │ └── usernamePassword.js │ │ │ │ ├── electron.js │ │ │ │ ├── integrationMatrix.js │ │ │ │ ├── notificationService.js │ │ │ │ ├── platformService.js │ │ │ │ ├── utils.js │ │ │ │ └── web.js │ │ │ ├── core │ │ │ ├── constant │ │ │ │ └── constant.js │ │ │ ├── electron │ │ │ │ ├── electron.html │ │ │ │ └── electron.js │ │ │ ├── i18n │ │ │ │ ├── i18n.js │ │ │ │ └── messages │ │ │ │ │ └── en.js │ │ │ ├── store │ │ │ │ ├── lightStore.js │ │ │ │ ├── modules │ │ │ │ │ ├── agent.js │ │ │ │ │ ├── apex.js │ │ │ │ │ ├── api.js │ │ │ │ │ ├── application.js │ │ │ │ │ ├── describe.js │ │ │ │ │ ├── document.js │ │ │ │ │ ├── einstein.js │ │ │ │ │ ├── error.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── metadata.js │ │ │ │ │ ├── package.js │ │ │ │ │ ├── platformEvent.js │ │ │ │ │ ├── query.js │ │ │ │ │ ├── recordViewer.js │ │ │ │ │ ├── smartInput.js │ │ │ │ │ ├── sobject.js │ │ │ │ │ ├── sobjectExplorer.js │ │ │ │ │ └── ui.js │ │ │ │ ├── store.js │ │ │ │ └── wire-adapter.js │ │ │ ├── toolkitElement │ │ │ │ └── toolkitElement.js │ │ │ └── worker │ │ │ │ └── worker.js │ │ │ ├── home │ │ │ ├── app │ │ │ │ ├── app.html │ │ │ │ └── app.js │ │ │ ├── quickLauncher │ │ │ │ ├── quickLauncher.css │ │ │ │ ├── quickLauncher.html │ │ │ │ └── quickLauncher.js │ │ │ └── welcome │ │ │ │ ├── welcome.html │ │ │ │ └── welcome.js │ │ │ ├── onboarding │ │ │ ├── installHeader │ │ │ │ ├── installHeader.html │ │ │ │ └── installHeader.js │ │ │ ├── installPage │ │ │ │ ├── installPage.html │ │ │ │ └── installPage.js │ │ │ └── installSteps │ │ │ │ ├── installSteps.css │ │ │ │ ├── installSteps.html │ │ │ │ └── installSteps.js │ │ │ ├── release │ │ │ ├── app │ │ │ │ ├── app.html │ │ │ │ └── app.js │ │ │ └── notes │ │ │ │ ├── notes.css │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── router │ │ │ └── applicationHandler │ │ │ │ └── applicationHandler.js │ │ │ ├── sarif │ │ │ ├── app │ │ │ │ ├── app.html │ │ │ │ ├── app.js │ │ │ │ └── utils.js │ │ │ ├── fileViewer │ │ │ │ ├── fileViewer.css │ │ │ │ ├── fileViewer.html │ │ │ │ └── fileViewer.js │ │ │ ├── levelViewer │ │ │ │ ├── levelViewer.css │ │ │ │ ├── levelViewer.html │ │ │ │ └── levelViewer.js │ │ │ └── preview │ │ │ │ ├── preview.css │ │ │ │ ├── preview.html │ │ │ │ └── preview.js │ │ │ ├── settings │ │ │ ├── apiAppSettings │ │ │ │ ├── apiAppSettings.css │ │ │ │ ├── apiAppSettings.html │ │ │ │ └── apiAppSettings.js │ │ │ ├── app │ │ │ │ ├── app.css │ │ │ │ ├── app.html │ │ │ │ └── app.js │ │ │ └── card │ │ │ │ ├── card.css │ │ │ │ ├── card.html │ │ │ │ └── card.js │ │ │ ├── shared │ │ │ ├── analytics │ │ │ │ └── analytics.js │ │ │ ├── cacheManager │ │ │ │ ├── cacheManager.js │ │ │ │ └── interfaces.js │ │ │ ├── logger │ │ │ │ └── logger.js │ │ │ ├── markdown │ │ │ │ └── markdown.js │ │ │ ├── middleware │ │ │ │ └── middleware.js │ │ │ ├── sf │ │ │ │ ├── mapping.js │ │ │ │ └── sf.js │ │ │ ├── store │ │ │ │ ├── constants.js │ │ │ │ ├── modules │ │ │ │ │ └── application │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ └── reducers.js │ │ │ │ ├── redux.js │ │ │ │ ├── store.js │ │ │ │ └── wire-adapter.js │ │ │ └── utils │ │ │ │ ├── classSet.js │ │ │ │ ├── idGenerator.js │ │ │ │ ├── keyboard.js │ │ │ │ ├── links.js │ │ │ │ ├── modules │ │ │ │ ├── api.js │ │ │ │ ├── assistant.js │ │ │ │ ├── metadata.js │ │ │ │ ├── platformEvent.js │ │ │ │ └── templates │ │ │ │ │ └── assistant.js │ │ │ │ ├── normalize.js │ │ │ │ ├── salesforce.js │ │ │ │ ├── sldsOverflowLibrary.js │ │ │ │ ├── sldsResizeObserver.js │ │ │ │ └── utils.js │ │ │ └── ui │ │ │ ├── app │ │ │ ├── app.css │ │ │ ├── app.html │ │ │ ├── app.js │ │ │ ├── modules.js │ │ │ └── utils.js │ │ │ ├── directView │ │ │ ├── directView.html │ │ │ └── directView.js │ │ │ ├── footer │ │ │ ├── footer.css │ │ │ ├── footer.html │ │ │ └── footer.js │ │ │ ├── fullView │ │ │ ├── fullView.html │ │ │ └── fullView.js │ │ │ ├── header │ │ │ ├── header.css │ │ │ ├── header.html │ │ │ └── header.js │ │ │ ├── headerLight │ │ │ ├── headerLight.css │ │ │ ├── headerLight.html │ │ │ └── headerLight.js │ │ │ ├── launcher │ │ │ ├── launcher.html │ │ │ └── launcher.js │ │ │ ├── markdownView │ │ │ ├── markdownView.css │ │ │ ├── markdownView.html │ │ │ └── markdownView.js │ │ │ ├── menu │ │ │ ├── menu.css │ │ │ ├── menu.html │ │ │ └── menu.js │ │ │ ├── modalLauncher │ │ │ ├── modalLauncher.html │ │ │ └── modalLauncher.js │ │ │ ├── notify │ │ │ ├── notify.html │ │ │ └── notify.js │ │ │ ├── root │ │ │ ├── root.html │ │ │ └── root.js │ │ │ ├── sessionExpiredModal │ │ │ ├── sessionExpiredModal.html │ │ │ └── sessionExpiredModal.js │ │ │ └── welcome │ │ │ ├── welcome.html │ │ │ └── welcome.js │ └── routeHandlers │ │ └── ctaRouter.ts ├── client_chrome │ ├── components │ │ ├── extension │ │ │ ├── footer │ │ │ │ ├── footer.css │ │ │ │ ├── footer.html │ │ │ │ └── footer.js │ │ │ ├── header │ │ │ │ ├── header.css │ │ │ │ ├── header.html │ │ │ │ └── header.js │ │ │ ├── root │ │ │ │ ├── root.html │ │ │ │ └── root.js │ │ │ ├── test │ │ │ │ ├── test.html │ │ │ │ └── test.js │ │ │ └── utils │ │ │ │ └── utils.js │ │ ├── feature │ │ │ ├── inputQuickPick │ │ │ │ ├── inputQuickPick.css │ │ │ │ ├── inputQuickPick.html │ │ │ │ ├── inputQuickPick.js │ │ │ │ └── utils.js │ │ │ ├── test │ │ │ │ ├── test.css │ │ │ │ ├── test.html │ │ │ │ └── test.js │ │ │ ├── tools │ │ │ │ ├── tools.html │ │ │ │ └── tools.js │ │ │ ├── userExplorer │ │ │ │ ├── userExplorer.css │ │ │ │ ├── userExplorer.html │ │ │ │ └── userExplorer.js │ │ │ ├── userExplorerNetworkModal │ │ │ │ ├── userExplorerNetworkModal.html │ │ │ │ └── userExplorerNetworkModal.js │ │ │ └── userExplorerRow │ │ │ │ ├── userExplorerRow.css │ │ │ │ ├── userExplorerRow.html │ │ │ │ └── userExplorerRow.js │ │ ├── overlay │ │ │ ├── item │ │ │ │ ├── item.css │ │ │ │ ├── item.html │ │ │ │ └── item.js │ │ │ └── utils │ │ │ │ └── utils.js │ │ ├── panels │ │ │ ├── default │ │ │ │ ├── default.css │ │ │ │ ├── default.html │ │ │ │ └── default.js │ │ │ └── salesforce │ │ │ │ ├── salesforce.css │ │ │ │ ├── salesforce.html │ │ │ │ └── salesforce.js │ │ └── views │ │ │ ├── default │ │ │ ├── default.css │ │ │ ├── default.html │ │ │ └── default.js │ │ │ └── overlay │ │ │ ├── overlay.css │ │ │ ├── overlay.html │ │ │ └── overlay.js │ ├── images │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ ├── image5.png │ │ ├── sf-toolkit-icon-128-dev.png │ │ ├── sf-toolkit-icon-128.png │ │ ├── sf-toolkit-icon-500.png │ │ ├── sftoolkit_access1.png │ │ ├── sftoolkit_access2.png │ │ ├── sftoolkit_connections.png │ │ ├── sftoolkit_orgDashboard.png │ │ └── sftoolkit_recordExplorer.png │ ├── inject │ │ ├── fake │ │ │ └── agent.js │ │ ├── inject_salesforce.js │ │ └── inject_toolkit.js │ ├── main.js │ ├── scripts │ │ ├── app.js │ │ ├── callback.js │ │ ├── default.js │ │ ├── googleAnalytic.js │ │ ├── link-action.js │ │ └── link-share.js │ ├── views │ │ ├── app.html │ │ ├── callback.html │ │ ├── default.html │ │ ├── link-action.html │ │ ├── link-share.html │ │ └── test.html │ └── workers │ │ ├── background.js │ │ ├── chromeApi.js │ │ └── utils │ │ ├── chrome.js │ │ └── utils.js ├── documentation │ └── 255.0.json ├── server │ ├── modules │ │ ├── cta.js │ │ ├── documentationSearch.js │ │ ├── llm │ │ │ └── openaiModel.js │ │ ├── openaiModel.js │ │ ├── openaiProxy.js │ │ └── proxy.js │ ├── server-dev.js │ └── server-prod.js └── workers │ ├── accessAnalyzer.worker.js │ ├── metadata.worker.js │ └── openaiWorker │ └── worker.js └── worker.rollup.config.mjs /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/.prettierrc -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm run start:heroku -------------------------------------------------------------------------------- /bundler/openai/dist/bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/bundler/openai/dist/bundle.min.js -------------------------------------------------------------------------------- /bundler/openai/dist/bundle.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/bundler/openai/dist/bundle.min.js.LICENSE.txt -------------------------------------------------------------------------------- /bundler/openai/dist/bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/bundler/openai/dist/bundle.min.js.map -------------------------------------------------------------------------------- /bundler/openai/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/bundler/openai/index.js -------------------------------------------------------------------------------- /bundler/openai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/bundler/openai/package-lock.json -------------------------------------------------------------------------------- /bundler/openai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/bundler/openai/package.json -------------------------------------------------------------------------------- /bundler/openai/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/bundler/openai/webpack.config.js -------------------------------------------------------------------------------- /git_images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/application.png -------------------------------------------------------------------------------- /git_images/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/electron.png -------------------------------------------------------------------------------- /git_images/embedded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/embedded.png -------------------------------------------------------------------------------- /git_images/gifs/extension_addNewOrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/gifs/extension_addNewOrg.gif -------------------------------------------------------------------------------- /git_images/gifs/extension_apexScript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/gifs/extension_apexScript.gif -------------------------------------------------------------------------------- /git_images/gifs/extension_apiExplorer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/gifs/extension_apiExplorer.gif -------------------------------------------------------------------------------- /git_images/gifs/extension_customContentScriptRegex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/gifs/extension_customContentScriptRegex.gif -------------------------------------------------------------------------------- /git_images/gifs/extension_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/gifs/extension_open.gif -------------------------------------------------------------------------------- /git_images/gifs/extension_openDB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/gifs/extension_openDB.gif -------------------------------------------------------------------------------- /git_images/gifs/extension_pin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/gifs/extension_pin.gif -------------------------------------------------------------------------------- /git_images/gifs/extension_quickEdit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/gifs/extension_quickEdit.gif -------------------------------------------------------------------------------- /git_images/orgManagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/orgManagement.png -------------------------------------------------------------------------------- /git_images/recordEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/recordEdit.png -------------------------------------------------------------------------------- /git_images/sidePanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/sidePanel.png -------------------------------------------------------------------------------- /git_images/welcome copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/welcome copy.png -------------------------------------------------------------------------------- /git_images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/git_images/welcome.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lwr.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/lwr.config.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/package.json -------------------------------------------------------------------------------- /privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/privacy.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/readme.md -------------------------------------------------------------------------------- /refactor-docs/command-k-prompt-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/refactor-docs/command-k-prompt-editor.md -------------------------------------------------------------------------------- /refactor-docs/connection-module-refactor-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/refactor-docs/connection-module-refactor-plan.md -------------------------------------------------------------------------------- /refactor-docs/vite-migration-chrome-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/refactor-docs/vite-migration-chrome-extension.md -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /scripts/files/chevrotain_render_public_dummy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/scripts/files/chevrotain_render_public_dummy.js -------------------------------------------------------------------------------- /scripts/files/primitiveIcon/primitiveIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/scripts/files/primitiveIcon/primitiveIcon.js -------------------------------------------------------------------------------- /scripts/fix_lightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/scripts/fix_lightning.js -------------------------------------------------------------------------------- /scripts/generateReleaseNotesJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/scripts/generateReleaseNotesJson.js -------------------------------------------------------------------------------- /scripts/generate_metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/scripts/generate_metadata.js -------------------------------------------------------------------------------- /scripts/load_documentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/scripts/load_documentation.js -------------------------------------------------------------------------------- /src/client/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/favicon.ico -------------------------------------------------------------------------------- /src/client/assets/images/checkbox_checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/images/checkbox_checked.gif -------------------------------------------------------------------------------- /src/client/assets/images/checkbox_unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/images/checkbox_unchecked.gif -------------------------------------------------------------------------------- /src/client/assets/images/closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/images/closed.gif -------------------------------------------------------------------------------- /src/client/assets/images/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/images/list.gif -------------------------------------------------------------------------------- /src/client/assets/images/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/images/open.gif -------------------------------------------------------------------------------- /src/client/assets/images/sfdx_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/images/sfdx_gui.png -------------------------------------------------------------------------------- /src/client/assets/libs/jsforce/jsforce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/jsforce/jsforce.js -------------------------------------------------------------------------------- /src/client/assets/libs/jspdf/jspdf.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/jspdf/jspdf.es.js -------------------------------------------------------------------------------- /src/client/assets/libs/jspdf/jspdf.plugin.autotable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/jspdf/jspdf.plugin.autotable.js -------------------------------------------------------------------------------- /src/client/assets/libs/jszip/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/jszip/jszip.min.js -------------------------------------------------------------------------------- /src/client/assets/libs/localforage/drivers/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/localforage/drivers/chrome.js -------------------------------------------------------------------------------- /src/client/assets/libs/localforage/localforage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/localforage/localforage.min.js -------------------------------------------------------------------------------- /src/client/assets/libs/mermaid/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/mermaid/mermaid.min.js -------------------------------------------------------------------------------- /src/client/assets/libs/monaco/monaco.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/monaco/monaco.bundle.js -------------------------------------------------------------------------------- /src/client/assets/libs/monaco/workers/editor.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/monaco/workers/editor.worker.js -------------------------------------------------------------------------------- /src/client/assets/libs/monaco/workers/json.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/monaco/workers/json.worker.js -------------------------------------------------------------------------------- /src/client/assets/libs/openai/bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/openai/bundle.min.js -------------------------------------------------------------------------------- /src/client/assets/libs/openapi-parser/openapi-parser.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/openapi-parser/openapi-parser.esm.min.js -------------------------------------------------------------------------------- /src/client/assets/libs/openapi-parser/openapi-parser.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/openapi-parser/openapi-parser.esm.min.js.map -------------------------------------------------------------------------------- /src/client/assets/libs/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/prism/prism.js -------------------------------------------------------------------------------- /src/client/assets/libs/require/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/require/require.js -------------------------------------------------------------------------------- /src/client/assets/libs/workers/accessAnalyzer.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/workers/accessAnalyzer.worker.js -------------------------------------------------------------------------------- /src/client/assets/libs/workers/accessAnalyzer.worker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/workers/accessAnalyzer.worker.js.map -------------------------------------------------------------------------------- /src/client/assets/libs/workers/metadata.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/workers/metadata.worker.js -------------------------------------------------------------------------------- /src/client/assets/libs/workers/metadata.worker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/libs/workers/metadata.worker.js.map -------------------------------------------------------------------------------- /src/client/assets/releaseNotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/releaseNotes.json -------------------------------------------------------------------------------- /src/client/assets/styles/algolia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/algolia.css -------------------------------------------------------------------------------- /src/client/assets/styles/codicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/codicon.ttf -------------------------------------------------------------------------------- /src/client/assets/styles/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/dashboard.css -------------------------------------------------------------------------------- /src/client/assets/styles/extension.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/extension.css -------------------------------------------------------------------------------- /src/client/assets/styles/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/highlight.css -------------------------------------------------------------------------------- /src/client/assets/styles/inject.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/inject.css -------------------------------------------------------------------------------- /src/client/assets/styles/monaco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/monaco.css -------------------------------------------------------------------------------- /src/client/assets/styles/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/popup.css -------------------------------------------------------------------------------- /src/client/assets/styles/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/prism.css -------------------------------------------------------------------------------- /src/client/assets/styles/seti.hash.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/seti.hash.woff -------------------------------------------------------------------------------- /src/client/assets/styles/slds-sf-toolkit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/slds-sf-toolkit.css -------------------------------------------------------------------------------- /src/client/assets/styles/tabulator.light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/tabulator.light.min.css -------------------------------------------------------------------------------- /src/client/assets/styles/tabulator.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/tabulator.min.css -------------------------------------------------------------------------------- /src/client/assets/styles/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/styles/web.css -------------------------------------------------------------------------------- /src/client/assets/templates/manifests/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/assets/templates/manifests/package.xml -------------------------------------------------------------------------------- /src/client/content/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/content/home.html -------------------------------------------------------------------------------- /src/client/hooks/application-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/hooks/application-hook.js -------------------------------------------------------------------------------- /src/client/hooks/cta-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/hooks/cta-hook.js -------------------------------------------------------------------------------- /src/client/layouts/cta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/layouts/cta.html -------------------------------------------------------------------------------- /src/client/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/layouts/home.html -------------------------------------------------------------------------------- /src/client/layouts/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/layouts/install.html -------------------------------------------------------------------------------- /src/client/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/layouts/main.html -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/basicSearch/basicSearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/basicSearch/basicSearch.css -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/basicSearch/basicSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/basicSearch/basicSearch.html -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/basicSearch/basicSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/basicSearch/basicSearch.js -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/markdownMenu/markdownMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/markdownMenu/markdownMenu.css -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/markdownMenu/markdownMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/markdownMenu/markdownMenu.html -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/markdownMenu/markdownMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/markdownMenu/markdownMenu.js -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/markdownMenu/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/markdownMenu/utils.js -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/markdownViewer/markdownViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/markdownViewer/markdownViewer.css -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/markdownViewer/markdownViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/markdownViewer/markdownViewer.html -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/markdownViewer/markdownViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/markdownViewer/markdownViewer.js -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/paginator/paginator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/paginator/paginator.css -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/paginator/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/paginator/paginator.html -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/cta/paginator/paginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/cta/paginator/paginator.js -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/doc/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/doc/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/doc/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/doc/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/documentation/doc/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/documentation/doc/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/agents/agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/agents/agents.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/agents/apexAgent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/agents/apexAgent.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/agents/generalAgent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/agents/generalAgent.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/agents/loggedInAgent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/agents/loggedInAgent.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/agents/loggedOutAgent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/agents/loggedOutAgent.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/agents/sharedInstructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/agents/sharedInstructions.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/audioRecorder/audioRecorder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/audioRecorder/audioRecorder.css -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/audioRecorder/audioRecorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/audioRecorder/audioRecorder.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/audioRecorder/audioRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/audioRecorder/audioRecorder.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/message/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/message/message.css -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/message/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/message/message.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/message/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/message/message.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/messageList/messageList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/messageList/messageList.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/messageList/messageList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/messageList/messageList.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/publisher/publisher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/publisher/publisher.css -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/publisher/publisher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/publisher/publisher.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/publisher/publisher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/publisher/publisher.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/_fake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/_fake.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/apex.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/api.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/chrome.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/connections.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/general.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/metadata.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/soql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/soql.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/tools.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/tools/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/tools/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/utils/_fake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/utils/_fake.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/utils/constants.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/utils/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/utils/context.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/utils/streamingAgentService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/utils/streamingAgentService.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/agent/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/agent/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/audioRecorder/audioRecorder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/audioRecorder/audioRecorder.css -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/audioRecorder/audioRecorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/audioRecorder/audioRecorder.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/audioRecorder/audioRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/audioRecorder/audioRecorder.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/dialog/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/dialog/dialog.css -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/dialog/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/dialog/dialog.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/dialog/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/dialog/dialog.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/message/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/message/message.css -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/message/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/message/message.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/message/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/message/message.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/saveModal/saveModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/saveModal/saveModal.html -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/saveModal/saveModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/saveModal/saveModal.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/utils/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/utils/template.js -------------------------------------------------------------------------------- /src/client/lwc/applications/einstein/assistant/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/einstein/assistant/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/app/app.css: -------------------------------------------------------------------------------- 1 | :host { 2 | height: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/menu/menu.css: -------------------------------------------------------------------------------- 1 | :host { 2 | --sds-c-badge-font-size: x-small; 3 | } 4 | -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/menu/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/menu/menu.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/menu/menu.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/structureViewer/structureViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/structureViewer/structureViewer.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/viewer/viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/viewer/viewer.css -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/viewer/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/viewer/viewer.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/viewer/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/viewer/viewer.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/viewerValue/viewerValue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/viewerValue/viewerValue.css -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/viewerValue/viewerValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/viewerValue/viewerValue.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/metadata/viewerValue/viewerValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/metadata/viewerValue/viewerValue.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/object/app/app.css: -------------------------------------------------------------------------------- 1 | :host { 2 | height: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/object/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/object/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/object/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/object/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/object/sobject/sobject.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/object/sobject/sobject.css -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/object/sobject/sobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/object/sobject/sobject.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/object/sobject/sobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/object/sobject/sobject.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/object/sobjectCell/sobjectCell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/object/sobjectCell/sobjectCell.css -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/object/sobjectCell/sobjectCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/object/sobjectCell/sobjectCell.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/object/sobjectCell/sobjectCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/object/sobjectCell/sobjectCell.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/code/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/code/code.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/code/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/code/code.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/company/company.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/company/company.css -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/company/company.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/company/company.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/company/company.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/company/company.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/me/me.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/me/me.css -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/me/me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/me/me.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/me/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/me/me.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/users/users.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/users/users.css -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/users/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/users/users.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/users/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/users/users.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/utilization/utilization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/utilization/utilization.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/org/utilization/utilization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/org/utilization/utilization.js -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/recordviewer/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/recordviewer/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/recordviewer/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/recordviewer/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/explorers/recordviewer/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/explorers/recordviewer/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/accessAnalyzer/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/accessAnalyzer/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/accessAnalyzer/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/accessAnalyzer/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/accessAnalyzer/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/accessAnalyzer/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/accessAnalyzer/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/accessAnalyzer/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/anonymousApex/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/anonymousApex/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/anonymousApex/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/anonymousApex/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/anonymousApex/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/anonymousApex/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/api/apiSchemaImportModal/apiSchemaImportModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/api/apiSchemaImportModal/apiSchemaImportModal.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/api/apiTreePanel/apiTreePanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/api/apiTreePanel/apiTreePanel.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/api/apiTreePanel/apiTreePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/api/apiTreePanel/apiTreePanel.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/api/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/api/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/api/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/api/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/api/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/api/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/api/header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/api/header/header.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/api/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/api/header/header.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/api/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/api/header/header.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/analyzer/analyzer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/analyzer/analyzer.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/analyzer/analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/analyzer/analyzer.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/pmd/pmd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/pmd/pmd.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/pmd/pmd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/pmd/pmd.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/pmd/pmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/pmd/pmd.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/sfdxScanner/sfdxScanner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/sfdxScanner/sfdxScanner.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/sfdxScanner/sfdxScanner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/sfdxScanner/sfdxScanner.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/sfdxScanner/sfdxScanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/sfdxScanner/sfdxScanner.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/code/sfdxScanner/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/code/sfdxScanner/theme.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/deploy/deploy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/deploy/deploy.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/deploy/deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/deploy/deploy.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/deploy/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/deploy/deploy.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/deployList/deployList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/deployList/deployList.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/deployList/deployList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/deployList/deployList.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/deployList/deployList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/deployList/deployList.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/deployListItem/deployListItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/deployListItem/deployListItem.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/deployListItem/deployListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/deployListItem/deployListItem.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/deployListItem/deployListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/deployListItem/deployListItem.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/modalDeploy/modalDeploy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/modalDeploy/modalDeploy.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/modalDeploy/modalDeploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/modalDeploy/modalDeploy.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/modalDeploy/modalDeploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/modalDeploy/modalDeploy.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/retrieve/retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/retrieve/retrieve.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/retrieve/retrieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/retrieve/retrieve.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/package/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/package/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/editorModal/editorModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/editorModal/editorModal.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/editorModal/editorModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/editorModal/editorModal.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/eventViewer/eventViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/eventViewer/eventViewer.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/eventViewer/eventViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/eventViewer/eventViewer.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/eventViewer/eventViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/eventViewer/eventViewer.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/message/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/message/message.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/message/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/message/message.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/message/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/message/message.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/messageList/messageList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/messageList/messageList.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/messageList/messageList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/messageList/messageList.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/messageList/messageList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/messageList/messageList.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/utils/replayExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/utils/replayExtension.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/platformevent/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/platformevent/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/composer/composer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/composer/composer.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/composer/composer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/composer/composer.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/composer/composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/composer/composer.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/item/item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/item/item.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/item/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/item/item.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/item/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/item/item.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/smartinput/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/smartinput/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/app/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/app/util.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/fieldsPanel/fieldsPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/fieldsPanel/fieldsPanel.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/fieldsPanel/fieldsPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/fieldsPanel/fieldsPanel.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/fieldsPanel/fieldsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/fieldsPanel/fieldsPanel.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/fieldsTree/fieldsTree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/fieldsTree/fieldsTree.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/fieldsTree/fieldsTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/fieldsTree/fieldsTree.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/fieldsTree/fieldsTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/fieldsTree/fieldsTree.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/header/header.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: contents; 3 | } 4 | -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/header/header.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/header/header.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/outputCell/outputCell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/outputCell/outputCell.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/outputCell/outputCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/outputCell/outputCell.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/outputCell/outputCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/outputCell/outputCell.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/outputPanel/outputPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/outputPanel/outputPanel.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/outputPanel/outputPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/outputPanel/outputPanel.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/outputPanel/outputPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/outputPanel/outputPanel.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/outputTable/outputTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/outputTable/outputTable.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/outputTable/outputTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/outputTable/outputTable.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/outputTable/outputTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/outputTable/outputTable.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/performanceModal/performanceModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/performanceModal/performanceModal.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/performanceModal/performanceModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/performanceModal/performanceModal.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/performanceModal/performanceModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/performanceModal/performanceModal.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/queryEditorPanel/queryEditorPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/queryEditorPanel/queryEditorPanel.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/queryEditorPanel/queryEditorPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/queryEditorPanel/queryEditorPanel.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/queryEditorPanel/queryEditorPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/queryEditorPanel/queryEditorPanel.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/relationshipsTree/relationshipsTree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/relationshipsTree/relationshipsTree.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/relationshipsTree/relationshipsTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/relationshipsTree/relationshipsTree.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/relationshipsTree/relationshipsTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/relationshipsTree/relationshipsTree.js -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/sobjectPanel/sobjectPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/sobjectPanel/sobjectPanel.css -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/sobjectPanel/sobjectPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/sobjectPanel/sobjectPanel.html -------------------------------------------------------------------------------- /src/client/lwc/applications/tools/soql/sobjectPanel/sobjectPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/applications/tools/soql/sobjectPanel/sobjectPanel.js -------------------------------------------------------------------------------- /src/client/lwc/components/builder/editor/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/editor/editor.css -------------------------------------------------------------------------------- /src/client/lwc/components/builder/editor/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/editor/editor.html -------------------------------------------------------------------------------- /src/client/lwc/components/builder/editor/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/editor/editor.js -------------------------------------------------------------------------------- /src/client/lwc/components/builder/editor/editorLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/editor/editorLabels.js -------------------------------------------------------------------------------- /src/client/lwc/components/builder/editor/hotkeysmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/editor/hotkeysmanager.js -------------------------------------------------------------------------------- /src/client/lwc/components/builder/header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/header/header.css -------------------------------------------------------------------------------- /src/client/lwc/components/builder/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/header/header.html -------------------------------------------------------------------------------- /src/client/lwc/components/builder/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/header/header.js -------------------------------------------------------------------------------- /src/client/lwc/components/builder/leftPanel/leftPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/leftPanel/leftPanel.css -------------------------------------------------------------------------------- /src/client/lwc/components/builder/leftPanel/leftPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/leftPanel/leftPanel.html -------------------------------------------------------------------------------- /src/client/lwc/components/builder/leftPanel/leftPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/leftPanel/leftPanel.js -------------------------------------------------------------------------------- /src/client/lwc/components/builder/rightPanel/rightPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/rightPanel/rightPanel.css -------------------------------------------------------------------------------- /src/client/lwc/components/builder/rightPanel/rightPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/rightPanel/rightPanel.html -------------------------------------------------------------------------------- /src/client/lwc/components/builder/rightPanel/rightPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/rightPanel/rightPanel.js -------------------------------------------------------------------------------- /src/client/lwc/components/builder/saveModal/saveModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/saveModal/saveModal.html -------------------------------------------------------------------------------- /src/client/lwc/components/builder/saveModal/saveModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/saveModal/saveModal.js -------------------------------------------------------------------------------- /src/client/lwc/components/builder/storagePanel/storagePanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/storagePanel/storagePanel.css -------------------------------------------------------------------------------- /src/client/lwc/components/builder/storagePanel/storagePanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/storagePanel/storagePanel.html -------------------------------------------------------------------------------- /src/client/lwc/components/builder/storagePanel/storagePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/storagePanel/storagePanel.js -------------------------------------------------------------------------------- /src/client/lwc/components/builder/toolbar/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/toolbar/toolbar.html -------------------------------------------------------------------------------- /src/client/lwc/components/builder/toolbar/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/builder/toolbar/toolbar.js -------------------------------------------------------------------------------- /src/client/lwc/components/dashboard/basicStats/basicStats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/dashboard/basicStats/basicStats.html -------------------------------------------------------------------------------- /src/client/lwc/components/dashboard/basicStats/basicStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/dashboard/basicStats/basicStats.js -------------------------------------------------------------------------------- /src/client/lwc/components/dashboard/horizontalRank/horizontalRank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/dashboard/horizontalRank/horizontalRank.html -------------------------------------------------------------------------------- /src/client/lwc/components/dashboard/horizontalRank/horizontalRank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/dashboard/horizontalRank/horizontalRank.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/components/editor/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/components/editor/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/default/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/default/default.css -------------------------------------------------------------------------------- /src/client/lwc/components/editor/default/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/default/default.html -------------------------------------------------------------------------------- /src/client/lwc/components/editor/default/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/default/default.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/editorCompleteWidget/editorCompleteWidget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/editorCompleteWidget/editorCompleteWidget.css -------------------------------------------------------------------------------- /src/client/lwc/components/editor/editorCompleteWidget/editorCompleteWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/editorCompleteWidget/editorCompleteWidget.html -------------------------------------------------------------------------------- /src/client/lwc/components/editor/editorCompleteWidget/editorCompleteWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/editorCompleteWidget/editorCompleteWidget.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/editorCompleteWidget/utils/codeExtract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/editorCompleteWidget/utils/codeExtract.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/editorCompleteWidget/utils/hotkeysmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/editorCompleteWidget/utils/hotkeysmanager.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/editorCompleteWidget/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/editorCompleteWidget/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/editorCompleteWidget/widget/monacoLwcWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/editorCompleteWidget/widget/monacoLwcWidget.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/fileTree/fileTree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/fileTree/fileTree.css -------------------------------------------------------------------------------- /src/client/lwc/components/editor/fileTree/fileTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/fileTree/fileTree.html -------------------------------------------------------------------------------- /src/client/lwc/components/editor/fileTree/fileTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/fileTree/fileTree.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/languages/apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/languages/apex.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/languages/apexLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/languages/apexLog.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/languages/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/languages/languages.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/languages/soql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/languages/soql.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/languages/soqlParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/languages/soqlParser.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/languages/suggestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/languages/suggestion.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/languages/visualforce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/languages/visualforce.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/modal/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/modal/modal.html -------------------------------------------------------------------------------- /src/client/lwc/components/editor/modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/modal/modal.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/promptWidget/promptWidget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/promptWidget/promptWidget.css -------------------------------------------------------------------------------- /src/client/lwc/components/editor/promptWidget/promptWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/promptWidget/promptWidget.html -------------------------------------------------------------------------------- /src/client/lwc/components/editor/promptWidget/promptWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/promptWidget/promptWidget.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/soql/instructions/instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/soql/instructions/instructions.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/soql/soql.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/soql/soql.css -------------------------------------------------------------------------------- /src/client/lwc/components/editor/soql/soql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/soql/soql.html -------------------------------------------------------------------------------- /src/client/lwc/components/editor/soql/soql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/soql/soql.js -------------------------------------------------------------------------------- /src/client/lwc/components/editor/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/editor/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/components/illustration/connection/connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/illustration/connection/connection.html -------------------------------------------------------------------------------- /src/client/lwc/components/illustration/connection/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/illustration/connection/connection.js -------------------------------------------------------------------------------- /src/client/lwc/components/illustration/default/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/illustration/default/default.html -------------------------------------------------------------------------------- /src/client/lwc/components/illustration/default/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/illustration/default/default.js -------------------------------------------------------------------------------- /src/client/lwc/components/illustration/empty/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/illustration/empty/empty.html -------------------------------------------------------------------------------- /src/client/lwc/components/illustration/empty/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/illustration/empty/empty.js -------------------------------------------------------------------------------- /src/client/lwc/components/illustration/illustration/illustration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/illustration/illustration/illustration.js -------------------------------------------------------------------------------- /src/client/lwc/components/illustration/research/research.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/illustration/research/research.html -------------------------------------------------------------------------------- /src/client/lwc/components/illustration/research/research.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/illustration/research/research.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/codeBlock/codeBlock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/codeBlock/codeBlock.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/codeBlock/codeBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/codeBlock/codeBlock.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/codeBlock/codeBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/codeBlock/codeBlock.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/field/field.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/field/field.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/field/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/field/field.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/field/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/field/field.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fieldDependencyManager/fieldDependencyManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fieldDependencyManager/fieldDependencyManager.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fieldLight/fieldLight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fieldLight/fieldLight.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fieldLight/fieldLight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fieldLight/fieldLight.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fieldLight/fieldLight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fieldLight/fieldLight.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileTree/fileTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileTree/fileTree.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileTree/fileTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileTree/fileTree.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileTree/filleTree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileTree/filleTree.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileTree/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileTree/utils.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileTreeItem/fileTreeItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileTreeItem/fileTreeItem.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileTreeItem/fileTreeItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileTreeItem/fileTreeItem.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileTreeItem/fileTreeItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileTreeItem/fileTreeItem.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileTreeItem/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileTreeItem/utils.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileUploader/fileUploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileUploader/fileUploader.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileUploader/fileUploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileUploader/fileUploader.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/fileUploader/fileUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/fileUploader/fileUploader.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/hashtagDropdown/hashtagDropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/hashtagDropdown/hashtagDropdown.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/hashtagDropdown/hashtagDropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/hashtagDropdown/hashtagDropdown.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/hashtagDropdown/hashtagDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/hashtagDropdown/hashtagDropdown.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/informationBlock/informationBlock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/informationBlock/informationBlock.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/informationBlock/informationBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/informationBlock/informationBlock.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/informationBlock/informationBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/informationBlock/informationBlock.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/inputField/dependencyUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/inputField/dependencyUtils.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/inputField/fieldUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/inputField/fieldUtils.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/inputField/inputField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/inputField/inputField.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/inputField/inputField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/inputField/inputField.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/listBuilder/listBuilder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/listBuilder/listBuilder.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/listBuilder/listBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/listBuilder/listBuilder.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/listBuilder/listBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/listBuilder/listBuilder.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/lookup/lookup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/lookup/lookup.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/lookup/lookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/lookup/lookup.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/lookup/lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/lookup/lookup.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/markdownViewer/markdownViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/markdownViewer/markdownViewer.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/markdownViewer/markdownViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/markdownViewer/markdownViewer.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/markdownViewer/markdownViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/markdownViewer/markdownViewer.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/menu/menu.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/menu/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/menu/menu.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/menu/menu.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/menuItem/menuItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/menuItem/menuItem.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/menuItem/menuItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/menuItem/menuItem.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/menuItem/menuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/menuItem/menuItem.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/modal/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/modal/modal.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/modal/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/modal/modal.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/modal/modal.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/modalUserSelector/modalUserSelector.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/client/lwc/components/slds/modalUserSelector/modalUserSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/modalUserSelector/modalUserSelector.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/modalUserSelector/modalUserSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/modalUserSelector/modalUserSelector.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/notify/notify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/notify/notify.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/notify/notify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/notify/notify.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/notify/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/notify/notify.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/paginator/paginator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/paginator/paginator.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/paginator/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/paginator/paginator.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/paginator/paginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/paginator/paginator.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/previewIllustration/previewIllustration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/previewIllustration/previewIllustration.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/previewIllustration/previewIllustration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/previewIllustration/previewIllustration.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/requireConnection/requireConnection.css: -------------------------------------------------------------------------------- 1 | :host { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /src/client/lwc/components/slds/requireConnection/requireConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/requireConnection/requireConnection.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/requireConnection/requireConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/requireConnection/requireConnection.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/searchableCombobox/searchableCombobox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/searchableCombobox/searchableCombobox.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/searchableCombobox/searchableCombobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/searchableCombobox/searchableCombobox.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/shortcutSelector/shortcutSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/shortcutSelector/shortcutSelector.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/shortcutSelector/shortcutSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/shortcutSelector/shortcutSelector.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/spinner/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/spinner/spinner.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/spinner/spinner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/spinner/spinner.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/spinner/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/spinner/spinner.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/spinner/spinner.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/spinner/spinner.js-meta.xml -------------------------------------------------------------------------------- /src/client/lwc/components/slds/splitView/splitView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/splitView/splitView.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/splitView/splitView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/splitView/splitView.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/splitView/splitView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/splitView/splitView.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/stencil/stencil.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/stencil/stencil.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/stencil/stencil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/stencil/stencil.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/stencil/stencil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/stencil/stencil.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/structureViewer/structureViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/structureViewer/structureViewer.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/structureViewer/structureViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/structureViewer/structureViewer.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/structureViewerItem/structureViewerItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/structureViewerItem/structureViewerItem.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/structureViewerItem/structureViewerItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/structureViewerItem/structureViewerItem.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/structureViewerItem/structureViewerItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/structureViewerItem/structureViewerItem.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tab/tab.css: -------------------------------------------------------------------------------- 1 | .slds-tabs_scoped__content { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tab/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/tab/tab.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tab/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/tab/tab.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tabBar/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/tabBar/keyboard.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tabBar/tabBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/tabBar/tabBar.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tabBar/tabBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/tabBar/tabBar.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tabBar/tabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/tabBar/tabBar.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tabset/tabset.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tabset/tabset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/tabset/tabset.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/tabset/tabset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/tabset/tabset.js -------------------------------------------------------------------------------- /src/client/lwc/components/slds/verticalPanel/verticalPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/verticalPanel/verticalPanel.css -------------------------------------------------------------------------------- /src/client/lwc/components/slds/verticalPanel/verticalPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/verticalPanel/verticalPanel.html -------------------------------------------------------------------------------- /src/client/lwc/components/slds/verticalPanel/verticalPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/components/slds/verticalPanel/verticalPanel.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ai/assistants/assistants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ai/assistants/assistants.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ai/assistants/classes/assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ai/assistants/classes/assistant.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ai/functions/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ai/functions/functions.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ai/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ai/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/callback/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/callback/callback.html -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/callback/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/callback/callback.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/card/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/card/card.css -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/card/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/card/card.html -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/card/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/card/card.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/cardItem/cardItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/cardItem/cardItem.css -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/cardItem/cardItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/cardItem/cardItem.html -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/cardItem/cardItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/cardItem/cardItem.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionDetailModal/connectionDetailModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionDetailModal/connectionDetailModal.css -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionDetailModal/connectionDetailModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionDetailModal/connectionDetailModal.html -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionDetailModal/connectionDetailModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionDetailModal/connectionDetailModal.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionImportModal/connectionImportModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionImportModal/connectionImportModal.css -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionImportModal/connectionImportModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionImportModal/connectionImportModal.html -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionImportModal/connectionImportModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionImportModal/connectionImportModal.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionManualModal/connectionManualModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionManualModal/connectionManualModal.css -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionManualModal/connectionManualModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionManualModal/connectionManualModal.html -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionManualModal/connectionManualModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionManualModal/connectionManualModal.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionNewModal/connectionNewModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionNewModal/connectionNewModal.css -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionNewModal/connectionNewModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionNewModal/connectionNewModal.html -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/connectionNewModal/connectionNewModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/connectionNewModal/connectionNewModal.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/quickAuthorize/quickAuthorize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/quickAuthorize/quickAuthorize.html -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/quickAuthorize/quickAuthorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/quickAuthorize/quickAuthorize.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/chrome.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/connectorClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/connectorClass.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/credentialStrategies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/credentialStrategies/index.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/credentialStrategies/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/credentialStrategies/oauth.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/credentialStrategies/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/credentialStrategies/session.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/credentialStrategies/usernamePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/credentialStrategies/usernamePassword.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/electron.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/integrationMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/integrationMatrix.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/notificationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/notificationService.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/platformService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/platformService.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/modules/connection/utils/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/connection/utils/web.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/constant/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/constant/constant.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/electron/electron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/electron/electron.html -------------------------------------------------------------------------------- /src/client/lwc/modules/core/electron/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/electron/electron.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/i18n/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/i18n/i18n.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/i18n/messages/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/i18n/messages/en.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/lightStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/lightStore.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/agent.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/apex.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/api.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/application.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/describe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/describe.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/document.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/einstein.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/einstein.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/error.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/index.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/metadata.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/package.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/platformEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/platformEvent.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/query.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/recordViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/recordViewer.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/smartInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/smartInput.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/sobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/sobject.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/sobjectExplorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/sobjectExplorer.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/modules/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/modules/ui.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/store.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/store/wire-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/store/wire-adapter.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/toolkitElement/toolkitElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/toolkitElement/toolkitElement.js -------------------------------------------------------------------------------- /src/client/lwc/modules/core/worker/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/core/worker/worker.js -------------------------------------------------------------------------------- /src/client/lwc/modules/home/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/home/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/modules/home/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/home/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/modules/home/quickLauncher/quickLauncher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/home/quickLauncher/quickLauncher.css -------------------------------------------------------------------------------- /src/client/lwc/modules/home/quickLauncher/quickLauncher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/home/quickLauncher/quickLauncher.html -------------------------------------------------------------------------------- /src/client/lwc/modules/home/quickLauncher/quickLauncher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/home/quickLauncher/quickLauncher.js -------------------------------------------------------------------------------- /src/client/lwc/modules/home/welcome/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/home/welcome/welcome.html -------------------------------------------------------------------------------- /src/client/lwc/modules/home/welcome/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/home/welcome/welcome.js -------------------------------------------------------------------------------- /src/client/lwc/modules/onboarding/installHeader/installHeader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/onboarding/installHeader/installHeader.html -------------------------------------------------------------------------------- /src/client/lwc/modules/onboarding/installHeader/installHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/onboarding/installHeader/installHeader.js -------------------------------------------------------------------------------- /src/client/lwc/modules/onboarding/installPage/installPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/onboarding/installPage/installPage.html -------------------------------------------------------------------------------- /src/client/lwc/modules/onboarding/installPage/installPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/onboarding/installPage/installPage.js -------------------------------------------------------------------------------- /src/client/lwc/modules/onboarding/installSteps/installSteps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/onboarding/installSteps/installSteps.css -------------------------------------------------------------------------------- /src/client/lwc/modules/onboarding/installSteps/installSteps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/onboarding/installSteps/installSteps.html -------------------------------------------------------------------------------- /src/client/lwc/modules/onboarding/installSteps/installSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/onboarding/installSteps/installSteps.js -------------------------------------------------------------------------------- /src/client/lwc/modules/release/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/release/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/modules/release/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/release/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/modules/release/notes/notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/release/notes/notes.css -------------------------------------------------------------------------------- /src/client/lwc/modules/release/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/release/notes/notes.html -------------------------------------------------------------------------------- /src/client/lwc/modules/release/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/release/notes/notes.js -------------------------------------------------------------------------------- /src/client/lwc/modules/router/applicationHandler/applicationHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/router/applicationHandler/applicationHandler.js -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/app/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/app/utils.js -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/fileViewer/fileViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/fileViewer/fileViewer.css -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/fileViewer/fileViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/fileViewer/fileViewer.html -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/fileViewer/fileViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/fileViewer/fileViewer.js -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/levelViewer/levelViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/levelViewer/levelViewer.css -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/levelViewer/levelViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/levelViewer/levelViewer.html -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/levelViewer/levelViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/levelViewer/levelViewer.js -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/preview/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/preview/preview.css -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/preview/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/preview/preview.html -------------------------------------------------------------------------------- /src/client/lwc/modules/sarif/preview/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/sarif/preview/preview.js -------------------------------------------------------------------------------- /src/client/lwc/modules/settings/apiAppSettings/apiAppSettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/settings/apiAppSettings/apiAppSettings.css -------------------------------------------------------------------------------- /src/client/lwc/modules/settings/apiAppSettings/apiAppSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/settings/apiAppSettings/apiAppSettings.html -------------------------------------------------------------------------------- /src/client/lwc/modules/settings/apiAppSettings/apiAppSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/settings/apiAppSettings/apiAppSettings.js -------------------------------------------------------------------------------- /src/client/lwc/modules/settings/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/settings/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/modules/settings/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/settings/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/modules/settings/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/settings/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/modules/settings/card/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/settings/card/card.css -------------------------------------------------------------------------------- /src/client/lwc/modules/settings/card/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/settings/card/card.html -------------------------------------------------------------------------------- /src/client/lwc/modules/settings/card/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/settings/card/card.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/analytics/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/analytics/analytics.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/cacheManager/cacheManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/cacheManager/cacheManager.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/cacheManager/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/cacheManager/interfaces.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/logger/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/logger/logger.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/markdown/markdown.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/middleware/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/middleware/middleware.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/sf/mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/sf/mapping.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/sf/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/sf/sf.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/store/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/store/constants.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/store/modules/application/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/store/modules/application/actions.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/store/modules/application/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/store/modules/application/reducers.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/store/redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/store/redux.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/store/store.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/store/wire-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/store/wire-adapter.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/classSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/classSet.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/idGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/idGenerator.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/keyboard.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/links.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/modules/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/modules/api.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/modules/assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/modules/assistant.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/modules/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/modules/metadata.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/modules/platformEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/modules/platformEvent.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/modules/templates/assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/modules/templates/assistant.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/normalize.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/salesforce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/salesforce.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/sldsOverflowLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/sldsOverflowLibrary.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/sldsResizeObserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/sldsResizeObserver.js -------------------------------------------------------------------------------- /src/client/lwc/modules/shared/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/shared/utils/utils.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/app/app.css -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/app/app.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/app/app.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/app/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/app/modules.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/app/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/app/utils.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/directView/directView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/directView/directView.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/directView/directView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/directView/directView.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/footer/footer.css -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/footer/footer.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/footer/footer.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/fullView/fullView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/fullView/fullView.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/fullView/fullView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/fullView/fullView.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/header/header.css -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/header/header.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/header/header.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/headerLight/headerLight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/headerLight/headerLight.css -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/headerLight/headerLight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/headerLight/headerLight.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/headerLight/headerLight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/headerLight/headerLight.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/launcher/launcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/launcher/launcher.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/launcher/launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/launcher/launcher.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/markdownView/markdownView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/markdownView/markdownView.css -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/markdownView/markdownView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/markdownView/markdownView.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/markdownView/markdownView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/markdownView/markdownView.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/menu/menu.css -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/menu/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/menu/menu.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/menu/menu.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/modalLauncher/modalLauncher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/modalLauncher/modalLauncher.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/modalLauncher/modalLauncher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/modalLauncher/modalLauncher.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/notify/notify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/notify/notify.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/notify/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/notify/notify.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/root/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/root/root.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/root/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/root/root.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/sessionExpiredModal/sessionExpiredModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/sessionExpiredModal/sessionExpiredModal.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/sessionExpiredModal/sessionExpiredModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/sessionExpiredModal/sessionExpiredModal.js -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/welcome/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/welcome/welcome.html -------------------------------------------------------------------------------- /src/client/lwc/modules/ui/welcome/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/lwc/modules/ui/welcome/welcome.js -------------------------------------------------------------------------------- /src/client/routeHandlers/ctaRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client/routeHandlers/ctaRouter.ts -------------------------------------------------------------------------------- /src/client_chrome/components/extension/footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/footer/footer.css -------------------------------------------------------------------------------- /src/client_chrome/components/extension/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/footer/footer.html -------------------------------------------------------------------------------- /src/client_chrome/components/extension/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/footer/footer.js -------------------------------------------------------------------------------- /src/client_chrome/components/extension/header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/header/header.css -------------------------------------------------------------------------------- /src/client_chrome/components/extension/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/header/header.html -------------------------------------------------------------------------------- /src/client_chrome/components/extension/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/header/header.js -------------------------------------------------------------------------------- /src/client_chrome/components/extension/root/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/root/root.html -------------------------------------------------------------------------------- /src/client_chrome/components/extension/root/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/root/root.js -------------------------------------------------------------------------------- /src/client_chrome/components/extension/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/test/test.html -------------------------------------------------------------------------------- /src/client_chrome/components/extension/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/test/test.js -------------------------------------------------------------------------------- /src/client_chrome/components/extension/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/extension/utils/utils.js -------------------------------------------------------------------------------- /src/client_chrome/components/feature/inputQuickPick/inputQuickPick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/inputQuickPick/inputQuickPick.css -------------------------------------------------------------------------------- /src/client_chrome/components/feature/inputQuickPick/inputQuickPick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/inputQuickPick/inputQuickPick.html -------------------------------------------------------------------------------- /src/client_chrome/components/feature/inputQuickPick/inputQuickPick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/inputQuickPick/inputQuickPick.js -------------------------------------------------------------------------------- /src/client_chrome/components/feature/inputQuickPick/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/inputQuickPick/utils.js -------------------------------------------------------------------------------- /src/client_chrome/components/feature/test/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/test/test.css -------------------------------------------------------------------------------- /src/client_chrome/components/feature/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/test/test.html -------------------------------------------------------------------------------- /src/client_chrome/components/feature/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/test/test.js -------------------------------------------------------------------------------- /src/client_chrome/components/feature/tools/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/tools/tools.html -------------------------------------------------------------------------------- /src/client_chrome/components/feature/tools/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/tools/tools.js -------------------------------------------------------------------------------- /src/client_chrome/components/feature/userExplorer/userExplorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/userExplorer/userExplorer.css -------------------------------------------------------------------------------- /src/client_chrome/components/feature/userExplorer/userExplorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/userExplorer/userExplorer.html -------------------------------------------------------------------------------- /src/client_chrome/components/feature/userExplorer/userExplorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/userExplorer/userExplorer.js -------------------------------------------------------------------------------- /src/client_chrome/components/feature/userExplorerRow/userExplorerRow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/userExplorerRow/userExplorerRow.css -------------------------------------------------------------------------------- /src/client_chrome/components/feature/userExplorerRow/userExplorerRow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/userExplorerRow/userExplorerRow.html -------------------------------------------------------------------------------- /src/client_chrome/components/feature/userExplorerRow/userExplorerRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/feature/userExplorerRow/userExplorerRow.js -------------------------------------------------------------------------------- /src/client_chrome/components/overlay/item/item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/overlay/item/item.css -------------------------------------------------------------------------------- /src/client_chrome/components/overlay/item/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/overlay/item/item.html -------------------------------------------------------------------------------- /src/client_chrome/components/overlay/item/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/overlay/item/item.js -------------------------------------------------------------------------------- /src/client_chrome/components/overlay/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/overlay/utils/utils.js -------------------------------------------------------------------------------- /src/client_chrome/components/panels/default/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/panels/default/default.css -------------------------------------------------------------------------------- /src/client_chrome/components/panels/default/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/panels/default/default.html -------------------------------------------------------------------------------- /src/client_chrome/components/panels/default/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/panels/default/default.js -------------------------------------------------------------------------------- /src/client_chrome/components/panels/salesforce/salesforce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/panels/salesforce/salesforce.css -------------------------------------------------------------------------------- /src/client_chrome/components/panels/salesforce/salesforce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/panels/salesforce/salesforce.html -------------------------------------------------------------------------------- /src/client_chrome/components/panels/salesforce/salesforce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/panels/salesforce/salesforce.js -------------------------------------------------------------------------------- /src/client_chrome/components/views/default/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/views/default/default.css -------------------------------------------------------------------------------- /src/client_chrome/components/views/default/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/views/default/default.html -------------------------------------------------------------------------------- /src/client_chrome/components/views/default/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/views/default/default.js -------------------------------------------------------------------------------- /src/client_chrome/components/views/overlay/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/views/overlay/overlay.css -------------------------------------------------------------------------------- /src/client_chrome/components/views/overlay/overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/views/overlay/overlay.html -------------------------------------------------------------------------------- /src/client_chrome/components/views/overlay/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/components/views/overlay/overlay.js -------------------------------------------------------------------------------- /src/client_chrome/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/image1.png -------------------------------------------------------------------------------- /src/client_chrome/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/image2.png -------------------------------------------------------------------------------- /src/client_chrome/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/image3.png -------------------------------------------------------------------------------- /src/client_chrome/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/image4.png -------------------------------------------------------------------------------- /src/client_chrome/images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/image5.png -------------------------------------------------------------------------------- /src/client_chrome/images/sf-toolkit-icon-128-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/sf-toolkit-icon-128-dev.png -------------------------------------------------------------------------------- /src/client_chrome/images/sf-toolkit-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/sf-toolkit-icon-128.png -------------------------------------------------------------------------------- /src/client_chrome/images/sf-toolkit-icon-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/sf-toolkit-icon-500.png -------------------------------------------------------------------------------- /src/client_chrome/images/sftoolkit_access1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/sftoolkit_access1.png -------------------------------------------------------------------------------- /src/client_chrome/images/sftoolkit_access2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/sftoolkit_access2.png -------------------------------------------------------------------------------- /src/client_chrome/images/sftoolkit_connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/sftoolkit_connections.png -------------------------------------------------------------------------------- /src/client_chrome/images/sftoolkit_orgDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/sftoolkit_orgDashboard.png -------------------------------------------------------------------------------- /src/client_chrome/images/sftoolkit_recordExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/images/sftoolkit_recordExplorer.png -------------------------------------------------------------------------------- /src/client_chrome/inject/fake/agent.js: -------------------------------------------------------------------------------- 1 | export const Agent = {}; -------------------------------------------------------------------------------- /src/client_chrome/inject/inject_salesforce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/inject/inject_salesforce.js -------------------------------------------------------------------------------- /src/client_chrome/inject/inject_toolkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/inject/inject_toolkit.js -------------------------------------------------------------------------------- /src/client_chrome/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/main.js -------------------------------------------------------------------------------- /src/client_chrome/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/scripts/app.js -------------------------------------------------------------------------------- /src/client_chrome/scripts/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/scripts/callback.js -------------------------------------------------------------------------------- /src/client_chrome/scripts/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/scripts/default.js -------------------------------------------------------------------------------- /src/client_chrome/scripts/googleAnalytic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/scripts/googleAnalytic.js -------------------------------------------------------------------------------- /src/client_chrome/scripts/link-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/scripts/link-action.js -------------------------------------------------------------------------------- /src/client_chrome/scripts/link-share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/scripts/link-share.js -------------------------------------------------------------------------------- /src/client_chrome/views/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/views/app.html -------------------------------------------------------------------------------- /src/client_chrome/views/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/views/callback.html -------------------------------------------------------------------------------- /src/client_chrome/views/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/views/default.html -------------------------------------------------------------------------------- /src/client_chrome/views/link-action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/views/link-action.html -------------------------------------------------------------------------------- /src/client_chrome/views/link-share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/views/link-share.html -------------------------------------------------------------------------------- /src/client_chrome/views/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/views/test.html -------------------------------------------------------------------------------- /src/client_chrome/workers/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/workers/background.js -------------------------------------------------------------------------------- /src/client_chrome/workers/chromeApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/workers/chromeApi.js -------------------------------------------------------------------------------- /src/client_chrome/workers/utils/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/workers/utils/chrome.js -------------------------------------------------------------------------------- /src/client_chrome/workers/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/client_chrome/workers/utils/utils.js -------------------------------------------------------------------------------- /src/documentation/255.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/documentation/255.0.json -------------------------------------------------------------------------------- /src/server/modules/cta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/server/modules/cta.js -------------------------------------------------------------------------------- /src/server/modules/documentationSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/server/modules/documentationSearch.js -------------------------------------------------------------------------------- /src/server/modules/llm/openaiModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/server/modules/llm/openaiModel.js -------------------------------------------------------------------------------- /src/server/modules/openaiModel.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/server/modules/openaiProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/server/modules/openaiProxy.js -------------------------------------------------------------------------------- /src/server/modules/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/server/modules/proxy.js -------------------------------------------------------------------------------- /src/server/server-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/server/server-dev.js -------------------------------------------------------------------------------- /src/server/server-prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/server/server-prod.js -------------------------------------------------------------------------------- /src/workers/accessAnalyzer.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/workers/accessAnalyzer.worker.js -------------------------------------------------------------------------------- /src/workers/metadata.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/workers/metadata.worker.js -------------------------------------------------------------------------------- /src/workers/openaiWorker/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/src/workers/openaiWorker/worker.js -------------------------------------------------------------------------------- /worker.rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebmann1/sfdx-ui-light/HEAD/worker.rollup.config.mjs --------------------------------------------------------------------------------