Skip to content

Switching cameras on Scanner Component #1692

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed unnecessary files
  • Loading branch information
kamal-qureshi committed May 20, 2025
commit 58fb137f43694f9a75f31633e4387151bda63f63
5 changes: 2 additions & 3 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,13 @@ jobs:
java-version: 17
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
ref: ${{ github.event.pull_request.head.sha }}
- name: Build Java
run: |
mvn clean compile -DskipTests -f ./server/api-service/pom.xml
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_SCANNER_OPTS: "-Dsonar.javascript.node.maxspace=8192 -Xmx512m"
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Compared with inline code in `{{ }}`, transformer supports multi-line code block

## Quickstart

Click **+ New > Transformer** in a query editor to create a transformer.
Click **+ New > Transfromer** in a query editor to create a transformer.

Then write your JS code in the transformer. You can click **Preview** to get the return value and access it by `transformerName.value` in your app.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Lowcoder provides some JavaScript built-in libraries for use.
Built-in Libraries can be used directly everywhere where you can use JavaScript.

```
// lodash
// loadash
return _.chunk(['a', 'b', 'c', 'd'], 2);
// => [['a', 'b'], ['c', 'd']]

Expand Down Expand Up @@ -107,11 +107,11 @@ You can check popular CDNs if they host your desired library as a minified packa

### Import / bind at the app level

Navigate to the Individualization page and then click the plus sign **+** under the **JavaScript library** tab. Paste the **library** link and click **Add New**. Lowcoder will now check, if the external library will be compatible and securely usable.
Navigate to the settings page and then click the plus sign **+** under the **JavaScript library** tab. Paste the **library** link and click **Add New**. Lowcoder will now check, if the external library will be compatible and securely usable.

You can also click the download icon to quickly download any recommended JS library.

<figure><img src="../../.gitbook/assets/Individualization JavaScript Libraries.png" alt=""><figcaption><p>Bind an external JS Library to an individual App</p></figcaption></figure>
<figure><img src="../../.gitbook/assets/App Editor External Libraries.png" alt=""><figcaption><p>Bind an external JS Library to an individual App</p></figcaption></figure>

Now, you can create a JS query and insert code.

Expand Down
Loading