diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress-appbuilder.yml similarity index 63% rename from .github/workflows/cypress.yml rename to .github/workflows/cypress-appbuilder.yml index 7265d0f230..b7d1177183 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress-appbuilder.yml @@ -1,4 +1,4 @@ -name: Cypress E2E Test +name: Cypress App-Builder on: pull_request_target: @@ -117,94 +117,80 @@ jobs: name: screenshots path: cypress-tests/cypress/screenshots - Cypress-Platform: + Cypress-App-builder-Subpath: runs-on: ubuntu-22.04 - if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-workspace' }} + if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-app-builder-subpath' }} steps: - - name: Setup Node.js - uses: actions/setup-node@v2 - with: - node-version: 18.3.0 - - - name: Set up Docker - uses: docker-practice/actions-setup-docker@master - - - name: Run PosgtreSQL Database Docker Container - run: | - sudo docker network create tooljet - sudo docker run -d --name postgres -p 5432:5432 -e POSTGRES_PASSWORD=postgres -e POSTGRES_USER=postgres -e POSTGRES_PORT=5432 -d postgres:13 - - name: Checkout uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.ref }} - - name: Install and build dependencies + # Create Docker Buildx builder with platform configuration + - name: Set up Docker Buildx run: | - npm cache clean --force - npm install - npm install --prefix server - npm install --prefix frontend - npm run build:plugins + mkdir -p ~/.docker/cli-plugins + curl -SL https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx + chmod a+x ~/.docker/cli-plugins/docker-buildx + docker buildx create --name mybuilder --platform linux/arm64,linux/amd64,linux/amd64/v2,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6 + docker buildx use mybuilder + + - name: Set DOCKER_CLI_EXPERIMENTAL + run: echo "DOCKER_CLI_EXPERIMENTAL=enabled" >> $GITHUB_ENV + + - name: use mybuilder buildx + run: docker buildx use mybuilder + + - name: Build docker image + run: docker buildx build --platform=linux/amd64 -f docker/production.Dockerfile . -t tooljet/tj-osv:cypress - name: Set up environment variables run: | - echo "TOOLJET_HOST=http://localhost:8082" >> .env + echo "TOOLJET_HOST=http://localhost:3000" >> .env echo "LOCKBOX_MASTER_KEY=cd97331a419c09387bef49787f7da8d2a81d30733f0de6bed23ad8356d2068b2" >> .env echo "SECRET_KEY_BASE=7073b9a35a15dd20914ae17e36a693093f25b74b96517a5fec461fc901c51e011cd142c731bee48c5081ec8bac321c1f259ef097ef2a16f25df17a3798c03426" >> .env echo "PG_DB=tooljet_development" >> .env echo "PG_USER=postgres" >> .env - echo "PG_HOST=localhost" >> .env + echo "PG_HOST=postgres" >> .env echo "PG_PASS=postgres" >> .env echo "PG_PORT=5432" >> .env echo "ENABLE_TOOLJET_DB=true" >> .env - echo "TOOLJET_DB=tooljet" >> .env + echo "TOOLJET_DB=tooljet_db" >> .env echo "TOOLJET_DB_USER=postgres" >> .env - echo "TOOLJET_DB_HOST=localhost" >> .env + echo "TOOLJET_DB_HOST=postgres" >> .env echo "TOOLJET_DB_PASS=postgres" >> .env echo "PGRST_JWT_SECRET=r9iMKoe5CRMgvJBBtp4HrqN7QiPpUToj" >> .env - echo "PGRST_HOST=localhost:3001" >> .env + echo "PGRST_HOST=postgrest" >> .env + echo "PGRST_DB_URI=postgres://postgres:postgres@postgres/tooljet_db" >> .env echo "SSO_GIT_OAUTH2_CLIENT_ID=dummy" >> .env echo "SSO_GIT_OAUTH2_CLIENT_SECRET=dummy" >> .env echo "SSO_GIT_OAUTH2_HOST=dummy" >> .env echo "SSO_GOOGLE_OAUTH2_CLIENT_ID=dummy" >> .env + echo "SUB_PATH=/apps/tooljet/" >> .env + echo "NODE_ENV=production" >> .env + echo "SERVE_CLIENT=true" >> .env - - name: Set up database - run: | - npm run --prefix server db:create - npm run --prefix server db:reset - npm run --prefix server db:seed + - name: Pulling the docker-compose file + run: curl -LO https://tooljet-test.s3.us-west-1.amazonaws.com/docker-compose.yaml && mkdir postgres_data - - name: sleep 5 - run: sleep 5 + - name: Run docker-compose file + run: docker-compose up -d - - name: Run PostgREST Docker Container - run: | - sudo docker run -d --name postgrest --network tooljet -p 3001:3000 \ - -e PGRST_DB_URI="postgres://postgres:postgres@postgres:5432/tooljet" -e PGRST_DB_ANON_ROLE="postgres" -e PGRST_JWT_SECRET="r9iMKoe5CRMgvJBBtp4HrqN7QiPpUToj" \ - postgrest/postgrest:v10.1.1.20221215 + - name: Checking containers + run: docker ps -a - - name: Run plugins compilation in watch mode - run: cd plugins && npm start & - - - name: Run the server - run: cd server && npm run start:dev & - - - name: Run the client - run: cd frontend && npm start & + - name: docker logs + run: sudo docker logs Tooljet-app - name: Wait for the server to be ready run: | timeout 1500 bash -c ' - until curl --silent --fail http://localhost:8082; do + until curl --silent --fail http://localhost:80/apps/tooljet/; do sleep 5 done' - - name: docker logs - run: sudo docker logs postgrest - - name: Create Cypress environment file id: create-json uses: jsdaniell/create-json@1.1.2 @@ -213,57 +199,12 @@ jobs: json: ${{ secrets.CYPRESS_SECRETS }} dir: "./cypress-tests" - - name: Platform + - name: App Builder subpath uses: cypress-io/github-action@v5 with: working-directory: ./cypress-tests - config: "baseUrl=http://localhost:8082" - config-file: cypress-workspace.config.js - - - name: Capture Screenshots - uses: actions/upload-artifact@v3 - if: always() - with: - name: screenshots - path: cypress-tests/cypress/screenshots - - Cypress-Marketplace: - runs-on: ubuntu-22.04 - - if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-marketplace' }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - ref: ${{ github.event.pull_request.head.ref }} - - - name: Setup Node.js - uses: actions/setup-node@v2 - with: - node-version: 18.3.0 - - - name: Checking the PR URL - run: | - timeout 1500 bash -c ' - until curl --silent --fail https://tooljet-pr-cypress-${{ env.PR_NUMBER }}.onrender.com; do - sleep 100 - done' - - - name: Create Cypress environment file - id: create-json - uses: jsdaniell/create-json@1.1.2 - with: - name: "cypress.env.json" - json: ${{ secrets.CYPRESS_SECRETS }} - dir: "./cypress-tests" - - - name: Marketplace - uses: cypress-io/github-action@v5 - with: - working-directory: ./cypress-tests - config: "baseUrl=https://tooljet-pr-cypress-${{ env.PR_NUMBER }}.onrender.com" - config-file: cypress-marketplace.config.js + config: "baseUrl=http://localhost:80/apps/tooljet/" + config-file: cypress-app-builder.config.js - name: Capture Screenshots uses: actions/upload-artifact@v3 diff --git a/.github/workflows/cypress-marketplace.yml b/.github/workflows/cypress-marketplace.yml new file mode 100644 index 0000000000..79c3ad776b --- /dev/null +++ b/.github/workflows/cypress-marketplace.yml @@ -0,0 +1,201 @@ +name: Cypress Marketplace + +on: + pull_request_target: + types: [labeled, unlabeled, closed] + + workflow_dispatch: + +env: + PR_NUMBER: ${{ github.event.number }} + BRANCH_NAME: ${{ github.head_ref || github.ref_name }} + +jobs: + Cypress-Marketplace: + runs-on: ubuntu-22.04 + + if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-marketplace' }} + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.ref }} + + # Create Docker Buildx builder with platform configuration + - name: Set up Docker Buildx + run: | + mkdir -p ~/.docker/cli-plugins + curl -SL https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx + chmod a+x ~/.docker/cli-plugins/docker-buildx + docker buildx create --name mybuilder --platform linux/arm64,linux/amd64,linux/amd64/v2,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6 + docker buildx use mybuilder + + - name: Set DOCKER_CLI_EXPERIMENTAL + run: echo "DOCKER_CLI_EXPERIMENTAL=enabled" >> $GITHUB_ENV + + - name: use mybuilder buildx + run: docker buildx use mybuilder + + - name: Build docker image + run: docker buildx build --platform=linux/amd64 -f docker/production.Dockerfile . -t tooljet/tj-osv:cypress + + - name: Set up environment variables + run: | + echo "TOOLJET_HOST=http://localhost:3000" >> .env + echo "LOCKBOX_MASTER_KEY=cd97331a419c09387bef49787f7da8d2a81d30733f0de6bed23ad8356d2068b2" >> .env + echo "SECRET_KEY_BASE=7073b9a35a15dd20914ae17e36a693093f25b74b96517a5fec461fc901c51e011cd142c731bee48c5081ec8bac321c1f259ef097ef2a16f25df17a3798c03426" >> .env + echo "PG_DB=tooljet_development" >> .env + echo "PG_USER=postgres" >> .env + echo "PG_HOST=postgres" >> .env + echo "PG_PASS=postgres" >> .env + echo "PG_PORT=5432" >> .env + echo "ENABLE_TOOLJET_DB=true" >> .env + echo "TOOLJET_DB=tooljet_db" >> .env + echo "TOOLJET_DB_USER=postgres" >> .env + echo "TOOLJET_DB_HOST=postgres" >> .env + echo "TOOLJET_DB_PASS=postgres" >> .env + echo "PGRST_JWT_SECRET=r9iMKoe5CRMgvJBBtp4HrqN7QiPpUToj" >> .env + echo "PGRST_HOST=postgrest" >> .env + echo "PGRST_DB_URI=postgres://postgres:postgres@postgres/tooljet_db" >> .env + echo "SSO_GIT_OAUTH2_CLIENT_ID=dummy" >> .env + echo "SSO_GIT_OAUTH2_CLIENT_SECRET=dummy" >> .env + echo "SSO_GIT_OAUTH2_HOST=dummy" >> .env + echo "SSO_GOOGLE_OAUTH2_CLIENT_ID=dummy" >> .env + + - name: Pulling the docker-compose file + run: curl -LO https://tooljet-test.s3.us-west-1.amazonaws.com/docker-compose.yaml && mkdir postgres_data + + - name: Run docker-compose file + run: docker-compose up -d + + - name: Checking containers + run: docker ps -a + + - name: docker logs + run: sudo docker logs Tooljet-app + + - name: Wait for the server to be ready + run: | + timeout 1500 bash -c ' + until curl --silent --fail http://localhost:80; do + sleep 5 + done' + + - name: Create Cypress environment file + id: create-json + uses: jsdaniell/create-json@1.1.2 + with: + name: "cypress.env.json" + json: ${{ secrets.CYPRESS_SECRETS }} + dir: "./cypress-tests" + + - name: Marketplace + uses: cypress-io/github-action@v5 + with: + working-directory: ./cypress-tests + config: "baseUrl=http://localhost:80" + config-file: cypress-marketplace.config.js + + - name: Capture Screenshots + uses: actions/upload-artifact@v3 + if: always() + with: + name: screenshots + path: cypress-tests/cypress/screenshots + + Cypress-Marketplace-Subpath: + runs-on: ubuntu-22.04 + + if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-marketplace-subpath' }} + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.ref }} + + # Create Docker Buildx builder with platform configuration + - name: Set up Docker Buildx + run: | + mkdir -p ~/.docker/cli-plugins + curl -SL https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx + chmod a+x ~/.docker/cli-plugins/docker-buildx + docker buildx create --name mybuilder --platform linux/arm64,linux/amd64,linux/amd64/v2,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6 + docker buildx use mybuilder + + - name: Set DOCKER_CLI_EXPERIMENTAL + run: echo "DOCKER_CLI_EXPERIMENTAL=enabled" >> $GITHUB_ENV + + - name: use mybuilder buildx + run: docker buildx use mybuilder + + - name: Build docker image + run: docker buildx build --platform=linux/amd64 -f docker/production.Dockerfile . -t tooljet/tj-osv:cypress + + - name: Set up environment variables + run: | + echo "TOOLJET_HOST=http://localhost:3000" >> .env + echo "LOCKBOX_MASTER_KEY=cd97331a419c09387bef49787f7da8d2a81d30733f0de6bed23ad8356d2068b2" >> .env + echo "SECRET_KEY_BASE=7073b9a35a15dd20914ae17e36a693093f25b74b96517a5fec461fc901c51e011cd142c731bee48c5081ec8bac321c1f259ef097ef2a16f25df17a3798c03426" >> .env + echo "PG_DB=tooljet_development" >> .env + echo "PG_USER=postgres" >> .env + echo "PG_HOST=postgres" >> .env + echo "PG_PASS=postgres" >> .env + echo "PG_PORT=5432" >> .env + echo "ENABLE_TOOLJET_DB=true" >> .env + echo "TOOLJET_DB=tooljet_db" >> .env + echo "TOOLJET_DB_USER=postgres" >> .env + echo "TOOLJET_DB_HOST=postgres" >> .env + echo "TOOLJET_DB_PASS=postgres" >> .env + echo "PGRST_JWT_SECRET=r9iMKoe5CRMgvJBBtp4HrqN7QiPpUToj" >> .env + echo "PGRST_HOST=postgrest" >> .env + echo "PGRST_DB_URI=postgres://postgres:postgres@postgres/tooljet_db" >> .env + echo "SSO_GIT_OAUTH2_CLIENT_ID=dummy" >> .env + echo "SSO_GIT_OAUTH2_CLIENT_SECRET=dummy" >> .env + echo "SSO_GIT_OAUTH2_HOST=dummy" >> .env + echo "SSO_GOOGLE_OAUTH2_CLIENT_ID=dummy" >> .env + echo "SUB_PATH=/apps/tooljet/" >> .env + echo "NODE_ENV=production" >> .env + echo "SERVE_CLIENT=true" >> .env + + - name: Pulling the docker-compose file + run: curl -LO https://tooljet-test.s3.us-west-1.amazonaws.com/docker-compose.yaml && mkdir postgres_data + + - name: Run docker-compose file + run: docker-compose up -d + + - name: Checking containers + run: docker ps -a + + - name: docker logs + run: sudo docker logs Tooljet-app + + - name: Wait for the server to be ready + run: | + timeout 1500 bash -c ' + until curl --silent --fail http://localhost:80/apps/tooljet/; do + sleep 5 + done' + + - name: Create Cypress environment file + id: create-json + uses: jsdaniell/create-json@1.1.2 + with: + name: "cypress.env.json" + json: ${{ secrets.CYPRESS_SECRETS }} + dir: "./cypress-tests" + + - name: Marketplace subpath + uses: cypress-io/github-action@v5 + with: + working-directory: ./cypress-tests + config: "baseUrl=http://localhost:80/apps/tooljet/" + config-file: cypress-marketplace.config.js + + - name: Capture Screenshots + uses: actions/upload-artifact@v3 + if: always() + with: + name: screenshots + path: cypress-tests/cypress/screenshots diff --git a/.github/workflows/cypress-platform.yml b/.github/workflows/cypress-platform.yml new file mode 100644 index 0000000000..df001669df --- /dev/null +++ b/.github/workflows/cypress-platform.yml @@ -0,0 +1,218 @@ +name: Cypress Platform + +on: + pull_request_target: + types: [labeled, unlabeled, closed] + + workflow_dispatch: + +env: + PR_NUMBER: ${{ github.event.number }} + BRANCH_NAME: ${{ github.head_ref || github.ref_name }} + +jobs: + Cypress-Platform: + runs-on: ubuntu-22.04 + + if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-workspace' }} + + steps: + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: 18.3.0 + + - name: Set up Docker + uses: docker-practice/actions-setup-docker@master + + - name: Run PosgtreSQL Database Docker Container + run: | + sudo docker network create tooljet + sudo docker run -d --name postgres -p 5432:5432 -e POSTGRES_PASSWORD=postgres -e POSTGRES_USER=postgres -e POSTGRES_PORT=5432 -d postgres:13 + + - name: Checkout + uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.ref }} + + - name: Install and build dependencies + run: | + npm cache clean --force + npm install + npm install --prefix server + npm install --prefix frontend + npm run build:plugins + + - name: Set up environment variables + run: | + echo "TOOLJET_HOST=http://localhost:8082" >> .env + echo "LOCKBOX_MASTER_KEY=cd97331a419c09387bef49787f7da8d2a81d30733f0de6bed23ad8356d2068b2" >> .env + echo "SECRET_KEY_BASE=7073b9a35a15dd20914ae17e36a693093f25b74b96517a5fec461fc901c51e011cd142c731bee48c5081ec8bac321c1f259ef097ef2a16f25df17a3798c03426" >> .env + echo "PG_DB=tooljet_development" >> .env + echo "PG_USER=postgres" >> .env + echo "PG_HOST=localhost" >> .env + echo "PG_PASS=postgres" >> .env + echo "PG_PORT=5432" >> .env + echo "ENABLE_TOOLJET_DB=true" >> .env + echo "TOOLJET_DB=tooljet" >> .env + echo "TOOLJET_DB_USER=postgres" >> .env + echo "TOOLJET_DB_HOST=localhost" >> .env + echo "TOOLJET_DB_PASS=postgres" >> .env + echo "PGRST_JWT_SECRET=r9iMKoe5CRMgvJBBtp4HrqN7QiPpUToj" >> .env + echo "PGRST_HOST=localhost:3001" >> .env + echo "SSO_GIT_OAUTH2_CLIENT_ID=dummy" >> .env + echo "SSO_GIT_OAUTH2_CLIENT_SECRET=dummy" >> .env + echo "SSO_GIT_OAUTH2_HOST=dummy" >> .env + echo "SSO_GOOGLE_OAUTH2_CLIENT_ID=dummy" >> .env + + - name: Set up database + run: | + npm run --prefix server db:create + npm run --prefix server db:reset + npm run --prefix server db:seed + + - name: sleep 5 + run: sleep 5 + + - name: Run PostgREST Docker Container + run: | + sudo docker run -d --name postgrest --network tooljet -p 3001:3000 \ + -e PGRST_DB_URI="postgres://postgres:postgres@postgres:5432/tooljet" -e PGRST_DB_ANON_ROLE="postgres" -e PGRST_JWT_SECRET="r9iMKoe5CRMgvJBBtp4HrqN7QiPpUToj" \ + postgrest/postgrest:v10.1.1.20221215 + + - name: Run plugins compilation in watch mode + run: cd plugins && npm start & + + - name: Run the server + run: cd server && npm run start:dev & + + - name: Run the client + run: cd frontend && npm start & + + - name: Wait for the server to be ready + run: | + timeout 1500 bash -c ' + until curl --silent --fail http://localhost:8082; do + sleep 5 + done' + + - name: docker logs + run: sudo docker logs postgrest + + - name: Create Cypress environment file + id: create-json + uses: jsdaniell/create-json@1.1.2 + with: + name: "cypress.env.json" + json: ${{ secrets.CYPRESS_SECRETS }} + dir: "./cypress-tests" + + - name: Platform + uses: cypress-io/github-action@v5 + with: + working-directory: ./cypress-tests + config: "baseUrl=http://localhost:8082" + config-file: cypress-workspace.config.js + + - name: Capture Screenshots + uses: actions/upload-artifact@v3 + if: always() + with: + name: screenshots + path: cypress-tests/cypress/screenshots + + Cypress-Platform-subpath: + runs-on: ubuntu-22.04 + + if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-workspace-subpath' }} + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.ref }} + + # Create Docker Buildx builder with platform configuration + - name: Set up Docker Buildx + run: | + mkdir -p ~/.docker/cli-plugins + curl -SL https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx + chmod a+x ~/.docker/cli-plugins/docker-buildx + docker buildx create --name mybuilder --platform linux/arm64,linux/amd64,linux/amd64/v2,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6 + docker buildx use mybuilder + + - name: Set DOCKER_CLI_EXPERIMENTAL + run: echo "DOCKER_CLI_EXPERIMENTAL=enabled" >> $GITHUB_ENV + + - name: use mybuilder buildx + run: docker buildx use mybuilder + + - name: Build docker image + run: docker buildx build --platform=linux/amd64 -f docker/production.Dockerfile . -t tooljet/tj-osv:cypress + + - name: Set up environment variables + run: | + echo "TOOLJET_HOST=http://localhost:3000" >> .env + echo "LOCKBOX_MASTER_KEY=cd97331a419c09387bef49787f7da8d2a81d30733f0de6bed23ad8356d2068b2" >> .env + echo "SECRET_KEY_BASE=7073b9a35a15dd20914ae17e36a693093f25b74b96517a5fec461fc901c51e011cd142c731bee48c5081ec8bac321c1f259ef097ef2a16f25df17a3798c03426" >> .env + echo "PG_DB=tooljet_development" >> .env + echo "PG_USER=postgres" >> .env + echo "PG_HOST=postgres" >> .env + echo "PG_PASS=postgres" >> .env + echo "PG_PORT=5432" >> .env + echo "ENABLE_TOOLJET_DB=true" >> .env + echo "TOOLJET_DB=tooljet_db" >> .env + echo "TOOLJET_DB_USER=postgres" >> .env + echo "TOOLJET_DB_HOST=postgres" >> .env + echo "TOOLJET_DB_PASS=postgres" >> .env + echo "PGRST_JWT_SECRET=r9iMKoe5CRMgvJBBtp4HrqN7QiPpUToj" >> .env + echo "PGRST_HOST=postgrest" >> .env + echo "PGRST_DB_URI=postgres://postgres:postgres@postgres/tooljet_db" >> .env + echo "SSO_GIT_OAUTH2_CLIENT_ID=dummy" >> .env + echo "SSO_GIT_OAUTH2_CLIENT_SECRET=dummy" >> .env + echo "SSO_GIT_OAUTH2_HOST=dummy" >> .env + echo "SSO_GOOGLE_OAUTH2_CLIENT_ID=dummy" >> .env + echo "SUB_PATH=/apps/tooljet/" >> .env + echo "NODE_ENV=production" >> .env + echo "SERVE_CLIENT=true" >> .env + + - name: Pulling the docker-compose file + run: curl -LO https://tooljet-test.s3.us-west-1.amazonaws.com/docker-compose.yaml && mkdir postgres_data + + - name: Run docker-compose file + run: docker-compose up -d + + - name: Checking containers + run: docker ps -a + + - name: docker logs + run: sudo docker logs Tooljet-app + + - name: Wait for the server to be ready + run: | + timeout 1500 bash -c ' + until curl --silent --fail http://localhost:80/apps/tooljet/; do + sleep 5 + done' + + - name: Create Cypress environment file + id: create-json + uses: jsdaniell/create-json@1.1.2 + with: + name: "cypress.env.json" + json: ${{ secrets.CYPRESS_SECRETS }} + dir: "./cypress-tests" + + - name: Platform-subpath + uses: cypress-io/github-action@v5 + with: + working-directory: ./cypress-tests + config: "baseUrl=http://localhost:80/apps/tooljet/" + config-file: cypress-workspace.config.js + + - name: Capture Screenshots + uses: actions/upload-artifact@v3 + if: always() + with: + name: screenshots + path: cypress-tests/cypress/screenshots diff --git a/.github/workflows/render-preview-deploy-pro.yml b/.github/workflows/render-preview-deploy-pro.yml deleted file mode 100644 index 5ae9cf06b2..0000000000 --- a/.github/workflows/render-preview-deploy-pro.yml +++ /dev/null @@ -1,351 +0,0 @@ -name: Render cypress app deploy -on: - pull_request_target: - types: [labeled, unlabeled, closed] -env: - PR_NUMBER: ${{ github.event.number }} - BRANCH_NAME: ${{ github.head_ref || github.ref_name }} - -permissions: - pull-requests: write - issues: write - -jobs: - create-review-cypress-app: - if: ${{ github.event.action == 'labeled' && github.event.label.name == 'create-review-cypress-app' }} - runs-on: ubuntu-latest - - steps: - - name: Create deployment - id: create-deployment - run: | - export RESPONSE=$(curl --request POST \ - --url https://api.render.com/v1/services \ - --header 'accept: application/json' \ - --header 'content-type: application/json' \ - --header 'Authorization: Bearer ${{ secrets.RENDER_API_KEY }}' \ - --data ' - { - "autoDeploy": "yes", - "branch": "${{ env.BRANCH_NAME }}", - "name": "ToolJet PR CYPRESS #${{ env.PR_NUMBER }}", - "notifyOnFail": "default", - "ownerId": "tea-caeo4bj19n072h3dddc0", - "repo": "${{ github.event.pull_request.head.repo.git_url }}", - "slug": "tooljet-pr-cypress-${{ env.PR_NUMBER }}", - "suspended": "not_suspended", - "suspenders": [], - "type": "web_service", - "envVars": [ - { - "key": "PG_HOST", - "value": "${{ secrets.RENDER_PG_HOST }}" - }, - { - "key": "PG_PORT", - "value": "5432" - }, - { - "key": "PG_USER", - "value": "${{ secrets.RENDER_PG_USER }}" - }, - { - "key": "PG_PASS", - "value": "${{ secrets.RENDER_PG_PASS }}" - }, - { - "key": "PG_DB", - "value": "${{ env.PR_NUMBER }}_cypress" - }, - { - "key": "ENABLE_TOOLJET_DB", - "value": "true" - }, - { - "key": "TOOLJET_DB", - "value": "${{ env.PR_NUMBER }}_cypress" - }, - { - "key": "TOOLJET_DB_HOST", - "value": "${{ secrets.RENDER_PG_HOST }}" - }, - { - "key": "TOOLJET_DB_USER", - "value": "${{ secrets.RENDER_PG_USER }}" - }, - { - "key": "TOOLJET_DB_PASS", - "value": "${{ secrets.RENDER_PG_PASS }}" - }, - { - "key": "TOOLJET_DB_PORT", - "value": "5432" - }, - { - "key": "PGRST_DB_URI", - "value": "postgres://${{ secrets.RENDER_PG_USER }}:${{ secrets.RENDER_PG_PASS }}@${{ secrets.RENDER_PG_HOST }}/${{ env.PR_NUMBER }}_cypress" - }, - { - "key": "PGRST_HOST", - "value": "127.0.0.1:3000" - }, - { - "key": "PGRST_JWT_SECRET", - "value": "r9iMKoe5CRMgvJBBtp4HrqN7QiPpUToj" - }, - { - "key": "PGRST_LOG_LEVEL", - "value": "info" - }, - { - "key": "PORT", - "value": "80" - }, - { - "key": "TOOLJET_HOST", - "value": "https://tooljet-pr-cypress-${{ env.PR_NUMBER }}.onrender.com" - }, - { - "key": "DISABLE_TOOLJET_TELEMETRY", - "value": "true" - }, - { - "key": "SMTP_ADDRESS", - "value": "smtp.mailtrap.io" - }, - { - "key": "SMTP_DOMAIN", - "value": "smtp.mailtrap.io" - }, - { - "key": "SMTP_PORT", - "value": "2525" - }, - { - "key": "SMTP_USERNAME", - "value": "${{ secrets.RENDER_SMTP_USERNAME }}" - }, - { - "key": "SMTP_PASSWORD", - "value": "${{ secrets.RENDER_SMTP_PASSWORD }}" - }, - { - "key": "ENABLE_MARKETPLACE_FEATURE", - "value": "true" - }, - { - "key": "SSO_GIT_OAUTH2_CLIENT_ID", - "value": "dummy" - }, - { - "key": "SSO_GIT_OAUTH2_CLIENT_SECRET", - "value": "dummy" - }, - { - "key": "SSO_GIT_OAUTH2_HOST", - "value": "dummy" - }, - { - "key": "SSO_GOOGLE_OAUTH2_CLIENT_ID", - "value": "dummy" - } - ], - "serviceDetails": { - "disk": null, - "env": "docker", - "envSpecificDetails": { - "dockerCommand": "", - "dockerContext": "./", - "dockerfilePath": "./docker/preview.Dockerfile" - }, - "healthCheckPath": "/api/health", - "numInstances": 1, - "openPorts": [{ - "port": 80, - "protocol": "TCP" - }], - "plan": "pro", - "pullRequestPreviewsEnabled": "no", - "region": "oregon", - "url": "https://tooljet-pr-cypress-${{ env.PR_NUMBER }}.onrender.com" - } - }') - - echo "response: $RESPONSE" - export SERVICE_ID=$(echo $RESPONSE | jq -r '.service.id') - echo "SERVICE_ID=$SERVICE_ID" >> $GITHUB_ENV - - - name: Comment deployment URL - uses: actions/github-script@v5 - with: - github-token: ${{secrets.GITHUB_TOKEN}} - script: | - github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: 'Deployment: https://tooljet-pr-cypress-${{ env.PR_NUMBER }}.onrender.com \n Dashboard: https://dashboard.render.com/web/${{ env.SERVICE_ID }}' - }) - - - uses: actions/github-script@v6 - with: - script: | - try { - await github.rest.issues.removeLabel({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - name: 'create-review-cypress-app' - }) - } catch (e) { - console.log(e) - } - - await github.rest.issues.addLabels({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - labels: ['active-review-cypress-app'] - }) - - destroy-review-cypress-app: - if: ${{ (github.event.action == 'labeled' && github.event.label.name == 'destroy-review-cypress-app') || github.event.action == 'closed' }} - runs-on: ubuntu-latest - - steps: - - name: Delete service - run: | - export SERVICE_ID=$(curl --request GET \ - --url 'https://api.render.com/v1/services?name=ToolJet%20PR%20CYPRESS%20%23${{ env.PR_NUMBER }}&limit=1' \ - --header 'accept: application/json' \ - --header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}' | \ - jq -r '.[0].service.id') - - curl --request DELETE \ - --url https://api.render.com/v1/services/$SERVICE_ID \ - --header 'accept: application/json' \ - --header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}' - - - uses: actions/github-script@v6 - with: - script: | - try { - await github.rest.issues.removeLabel({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - name: 'destroy-review-cypress-app' - }) - } catch (e) { - console.log(e) - } - - try { - await github.rest.issues.removeLabel({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - name: 'suspend-review-cypress-app' - }) - } catch (e) { - console.log(e) - } - - try { - await github.rest.issues.removeLabel({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - name: 'active-review-cypress-app' - }) - } catch (e) { - console.log(e) - } - - - name: Install PostgreSQL client - run: | - sudo apt update - sudo apt install postgresql-client -y - - - name: Wait after installing PostgreSQL - run: sleep 25 - - - name: Drop PostgreSQL PR database - env: - PGHOST: ${{ secrets.RENDER_DS_PG_HOST }} - PGPORT: 5432 - PGUSER: ${{ secrets.RENDER_DS_PG_USER }} - PGDATABASE: ${{ env.PR_NUMBER }}_cypress - run: | - PGPASSWORD=${{ secrets.RENDER_DS_PG_PASS }} psql -h $PGHOST -p $PGPORT -U $PGUSER -d postgres -c "drop database \"$PGDATABASE\" ;" - - suspend-review-cypress-app: - if: ${{ github.event.action == 'labeled' && github.event.label.name == 'suspend-review-cypress-app' }} - runs-on: ubuntu-latest - - steps: - - name: Suspend service - run: | - export SERVICE_ID=$(curl --request GET \ - --url 'https://api.render.com/v1/services?name=ToolJet%20PR%20CYPRESS%20%23${{ env.PR_NUMBER }}&limit=1' \ - --header 'accept: application/json' \ - --header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}' | \ - jq -r '.[0].service.id') - - curl --request POST \ - --url https://api.render.com/v1/services/$SERVICE_ID/suspend \ - --header 'accept: application/json' \ - --header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}' - - - uses: actions/github-script@v6 - with: - script: | - try { - await github.rest.issues.removeLabel({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - name: 'active-review-cypress-app' - }) - } catch (e) { - console.log(e) - } - - resume-review-cypress-app: - if: ${{ github.event.action == 'unlabeled' && github.event.label.name == 'suspend-review-cypress-app' }} - runs-on: ubuntu-latest - - steps: - - name: Resume service - run: | - export SERVICE_ID=$(curl --request GET \ - --url 'https://api.render.com/v1/services?name=ToolJet%20PR%20CYPRESS%20%23${{ env.PR_NUMBER }}&limit=1' \ - --header 'accept: application/json' \ - --header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}' | \ - jq -r '.[0].service.id') - - curl --request POST \ - --url https://api.render.com/v1/services/$SERVICE_ID/resume \ - --header 'accept: application/json' \ - --header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}' - - - uses: actions/github-script@v6 - with: - script: | - await github.rest.issues.addLabels({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - labels: ['active-review-cypress-app'] - }) - - try { - await github.rest.issues.removeLabel({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - name: 'suspend-review-cypress-app' - }) - } catch (e) { - console.log(e) - } diff --git a/.github/workflows/render-suspend-labeler-pro.yml b/.github/workflows/render-suspend-labeler-pro.yml deleted file mode 100644 index b35323aa5d..0000000000 --- a/.github/workflows/render-suspend-labeler-pro.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Label for stale render cypress app deploy -on: - workflow_dispatch: - schedule: - - cron: '0 0 * * *' - -permissions: - issues: write - -jobs: - label-stale-deploys: - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - uses: akshaysasidrn/stale-label-fetch@v1.1 - id: stale-label - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - stale-label: 'active-review-cypress-app' - stale-time: '86400' - type: 'pull_request' - - name: Get stale numbers - run: echo "Matched PR numbers - ${{ steps.stale-label.outputs.stale-numbers }}" - - name: Add suspend label - uses: actions/github-script@v6 - env: - STALE_NUMBERS: ${{ steps.stale-label.outputs.stale-numbers }} - with: - github-token: ${{ secrets.TJ_BOT_PAT }} - script: | - if (!process.env.STALE_NUMBERS) return - - const prNumbers = process.env.STALE_NUMBERS.split(",") - - console.log(`Adding suspend labels for: ${prNumbers}`) - - for (const prNumber of prNumbers) { - github.rest.issues.addLabels({ - issue_number: prNumber, - owner: context.repo.owner, - repo: context.repo.repo, - labels: ['suspend-review-cypress-app'] - }) - } diff --git a/.version b/.version index 17bdb70fa8..4e2200b98e 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -2.19.2 +2.20.1 diff --git a/docs/docs/user-authentication/sso/saml.md b/docs/docs/user-authentication/sso/saml.md new file mode 100644 index 0000000000..f412c69009 --- /dev/null +++ b/docs/docs/user-authentication/sso/saml.md @@ -0,0 +1,79 @@ +--- +id: saml +title: SAML +--- + +ToolJet supports SAML authentication for your workspace. The supported SAML providers are: Okta, Active Directory Federation Services, Azure AD, Auth0 and other SAML SSO providers. + +### Configuring SAML + +To enable SAML authentication, you need to configure the following workspace settings: + +1. Go to **Workspace Settings** > **SSO** > **SAML**. + +
+ + SSO :SAMP + +
+ +2. By default, SAML is disabled. Toggle it on to enable SAML authentication. + +
+ + SSO :SAMP + +
+ +3. Enter the following configuration details: + + - **SAML Provider Name**: Enter the name of your SAML provider. This name will be displayed on the login page. + - **Identity provider metadata**: Upload the data from the metadata file provided by your SAML provider. This file contains the SAML configuration details. + - **Group Attribute**: Enter the name of the attribute that contains the group information of the user. This attribute is used to map the user to the appropriate group. + - **Redirect URL**: Copy the redirect URL provided and paste it in the SAML provider's configuration page. + + :::tip Downloading the metadata from your identity provider + Generally, the metadata is available in the form of an XML file which can be downloaded from your identity provider's dashboard. + + Copy the metadata from the XML file and paste it into the ToolJet's SAML SSO configuration settings. Please ensure that the metadata is pasted in the correct format, as it contains essential configuration details from the identity provider necessary for authentication. + + Additionally, you can often find this data by navigating to https://<your-identity-provider>/federationmetadata/2007-06/federationmetadata.xml + ::: + +
+ + SSO :SAMP + +
+ +4. Once configured, click **Save Changes**. + +### Logging in with SAML + +1. Go to the **[General Settings](/docs/user-authentication/general-settings)** and copy the **Login URL** provided. Furthermore, you have the flexibility to choose whether to turn on 'Enable Signups,' allowing users to signup without an invite. Through SSO authentication, we check if the user already exists; if so, they can sign in seamlessly. Otherwise, an error will be displayed. Conversely, with this option disabled, only invited users can log in, provided SSO authentication is successful. + +
+ + SSO :SAML + +
+ +2. The **Login URL** obtained can be used to access the workspace. Please note that ToolJet supports SAML login at the workspace level, ensuring users are logged in specifically to the selected workspace. + + As a result, users can now log in to your workspace using the provided Login URL. The login page will prominently feature the name of the SAML provider configured in your workspace settings. + +
+ + SSO :SAMP + +
+ +3. Click on **Sign in with `SAML Name`** button and you will be redirected to the SAML provider's login page. + +
+ + SSO :SAMP + +
+ +4. Enter your credentials and click **Login**. If the user is signing in for the first time, they will be redirected to the ToolJet's onboarding page. \ No newline at end of file diff --git a/docs/sidebars.js b/docs/sidebars.js index 230f897487..ab94cdd29f 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -271,6 +271,7 @@ const sidebars = { ], }, 'user-authentication/sso/ldap', + 'user-authentication/sso/saml', ], }, ], diff --git a/docs/static/img/sso/saml/auth.png b/docs/static/img/sso/saml/auth.png new file mode 100644 index 0000000000..3d5de1903a Binary files /dev/null and b/docs/static/img/sso/saml/auth.png differ diff --git a/docs/static/img/sso/saml/config.png b/docs/static/img/sso/saml/config.png new file mode 100644 index 0000000000..bf4e827b52 Binary files /dev/null and b/docs/static/img/sso/saml/config.png differ diff --git a/docs/static/img/sso/saml/enable.png b/docs/static/img/sso/saml/enable.png new file mode 100644 index 0000000000..a00dc81bb3 Binary files /dev/null and b/docs/static/img/sso/saml/enable.png differ diff --git a/docs/static/img/sso/saml/login.png b/docs/static/img/sso/saml/login.png new file mode 100644 index 0000000000..e89e514512 Binary files /dev/null and b/docs/static/img/sso/saml/login.png differ diff --git a/docs/static/img/sso/saml/url.png b/docs/static/img/sso/saml/url.png new file mode 100644 index 0000000000..45a5262c98 Binary files /dev/null and b/docs/static/img/sso/saml/url.png differ diff --git a/docs/static/img/sso/saml/workspaceset.png b/docs/static/img/sso/saml/workspaceset.png new file mode 100644 index 0000000000..4e897eaaa5 Binary files /dev/null and b/docs/static/img/sso/saml/workspaceset.png differ diff --git a/docs/versioned_docs/version-2.19.0/user-authentication/sso/saml.md b/docs/versioned_docs/version-2.19.0/user-authentication/sso/saml.md new file mode 100644 index 0000000000..f412c69009 --- /dev/null +++ b/docs/versioned_docs/version-2.19.0/user-authentication/sso/saml.md @@ -0,0 +1,79 @@ +--- +id: saml +title: SAML +--- + +ToolJet supports SAML authentication for your workspace. The supported SAML providers are: Okta, Active Directory Federation Services, Azure AD, Auth0 and other SAML SSO providers. + +### Configuring SAML + +To enable SAML authentication, you need to configure the following workspace settings: + +1. Go to **Workspace Settings** > **SSO** > **SAML**. + +
+ + SSO :SAMP + +
+ +2. By default, SAML is disabled. Toggle it on to enable SAML authentication. + +
+ + SSO :SAMP + +
+ +3. Enter the following configuration details: + + - **SAML Provider Name**: Enter the name of your SAML provider. This name will be displayed on the login page. + - **Identity provider metadata**: Upload the data from the metadata file provided by your SAML provider. This file contains the SAML configuration details. + - **Group Attribute**: Enter the name of the attribute that contains the group information of the user. This attribute is used to map the user to the appropriate group. + - **Redirect URL**: Copy the redirect URL provided and paste it in the SAML provider's configuration page. + + :::tip Downloading the metadata from your identity provider + Generally, the metadata is available in the form of an XML file which can be downloaded from your identity provider's dashboard. + + Copy the metadata from the XML file and paste it into the ToolJet's SAML SSO configuration settings. Please ensure that the metadata is pasted in the correct format, as it contains essential configuration details from the identity provider necessary for authentication. + + Additionally, you can often find this data by navigating to https://<your-identity-provider>/federationmetadata/2007-06/federationmetadata.xml + ::: + +
+ + SSO :SAMP + +
+ +4. Once configured, click **Save Changes**. + +### Logging in with SAML + +1. Go to the **[General Settings](/docs/user-authentication/general-settings)** and copy the **Login URL** provided. Furthermore, you have the flexibility to choose whether to turn on 'Enable Signups,' allowing users to signup without an invite. Through SSO authentication, we check if the user already exists; if so, they can sign in seamlessly. Otherwise, an error will be displayed. Conversely, with this option disabled, only invited users can log in, provided SSO authentication is successful. + +
+ + SSO :SAML + +
+ +2. The **Login URL** obtained can be used to access the workspace. Please note that ToolJet supports SAML login at the workspace level, ensuring users are logged in specifically to the selected workspace. + + As a result, users can now log in to your workspace using the provided Login URL. The login page will prominently feature the name of the SAML provider configured in your workspace settings. + +
+ + SSO :SAMP + +
+ +3. Click on **Sign in with `SAML Name`** button and you will be redirected to the SAML provider's login page. + +
+ + SSO :SAMP + +
+ +4. Enter your credentials and click **Login**. If the user is signing in for the first time, they will be redirected to the ToolJet's onboarding page. \ No newline at end of file diff --git a/docs/versioned_sidebars/version-2.19.0-sidebars.json b/docs/versioned_sidebars/version-2.19.0-sidebars.json index 393cfcb9bb..66c63b0d4a 100644 --- a/docs/versioned_sidebars/version-2.19.0-sidebars.json +++ b/docs/versioned_sidebars/version-2.19.0-sidebars.json @@ -260,7 +260,8 @@ "user-authentication/sso/openid/google-openid" ] }, - "user-authentication/sso/ldap" + "user-authentication/sso/ldap", + "user-authentication/sso/saml" ] } ] @@ -421,4 +422,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/frontend/.version b/frontend/.version index 17bdb70fa8..4e2200b98e 100644 --- a/frontend/.version +++ b/frontend/.version @@ -1 +1 @@ -2.19.2 +2.20.1 diff --git a/frontend/assets/images/templates/customer-support-admin-dark.png b/frontend/assets/images/templates/customer-support-admin-dark.png new file mode 100644 index 0000000000..a6065907dc Binary files /dev/null and b/frontend/assets/images/templates/customer-support-admin-dark.png differ diff --git a/frontend/assets/images/templates/customer-support-admin.png b/frontend/assets/images/templates/customer-support-admin.png new file mode 100644 index 0000000000..1c36c27d19 Binary files /dev/null and b/frontend/assets/images/templates/customer-support-admin.png differ diff --git a/frontend/assets/images/templates/customer-ticketing-form-dark.png b/frontend/assets/images/templates/customer-ticketing-form-dark.png new file mode 100644 index 0000000000..e32236886e Binary files /dev/null and b/frontend/assets/images/templates/customer-ticketing-form-dark.png differ diff --git a/frontend/assets/images/templates/customer-ticketing-form.png b/frontend/assets/images/templates/customer-ticketing-form.png new file mode 100644 index 0000000000..e6191ca051 Binary files /dev/null and b/frontend/assets/images/templates/customer-ticketing-form.png differ diff --git a/frontend/assets/images/templates/inventory-management-dark.png b/frontend/assets/images/templates/inventory-management-dark.png new file mode 100644 index 0000000000..f565912818 Binary files /dev/null and b/frontend/assets/images/templates/inventory-management-dark.png differ diff --git a/frontend/assets/images/templates/inventory-management.png b/frontend/assets/images/templates/inventory-management.png new file mode 100644 index 0000000000..c353e010ba Binary files /dev/null and b/frontend/assets/images/templates/inventory-management.png differ diff --git a/frontend/assets/images/templates/lead-management-system-dark.png b/frontend/assets/images/templates/lead-management-system-dark.png new file mode 100644 index 0000000000..8549c52e71 Binary files /dev/null and b/frontend/assets/images/templates/lead-management-system-dark.png differ diff --git a/frontend/assets/images/templates/lead-management-system.png b/frontend/assets/images/templates/lead-management-system.png new file mode 100644 index 0000000000..1de084c534 Binary files /dev/null and b/frontend/assets/images/templates/lead-management-system.png differ diff --git a/frontend/assets/images/templates/sales-analytics-dashboard-dark.png b/frontend/assets/images/templates/sales-analytics-dashboard-dark.png new file mode 100644 index 0000000000..bfe9a4aee7 Binary files /dev/null and b/frontend/assets/images/templates/sales-analytics-dashboard-dark.png differ diff --git a/frontend/assets/images/templates/sales-analytics-dashboard.png b/frontend/assets/images/templates/sales-analytics-dashboard.png new file mode 100644 index 0000000000..bfeeea9d73 Binary files /dev/null and b/frontend/assets/images/templates/sales-analytics-dashboard.png differ diff --git a/frontend/assets/images/templates/supply-chain-management-dark.png b/frontend/assets/images/templates/supply-chain-management-dark.png new file mode 100644 index 0000000000..6c8a8ebc79 Binary files /dev/null and b/frontend/assets/images/templates/supply-chain-management-dark.png differ diff --git a/frontend/assets/images/templates/supply-chain-management.png b/frontend/assets/images/templates/supply-chain-management.png new file mode 100644 index 0000000000..841baf681a Binary files /dev/null and b/frontend/assets/images/templates/supply-chain-management.png differ diff --git a/frontend/src/Editor/Components/Table/Pagination.jsx b/frontend/src/Editor/Components/Table/Pagination.jsx index 1f875c595c..123e19a414 100644 --- a/frontend/src/Editor/Components/Table/Pagination.jsx +++ b/frontend/src/Editor/Components/Table/Pagination.jsx @@ -1,5 +1,6 @@ import React, { useState, useEffect } from 'react'; import { ButtonSolid } from '@/_ui/AppButton/AppButton'; +import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; export const Pagination = function Pagination({ onPageIndexChanged, @@ -16,6 +17,7 @@ export const Pagination = function Pagination({ // eslint-disable-next-line no-unused-vars darkMode, tableWidth, + loadingState, }) { const [pageCount, setPageCount] = useState(autoPageCount); @@ -50,6 +52,16 @@ export const Pagination = function Pagination({ gotoPage(pageIndex - 1); } + if (loadingState) { + return ( +
+ + + +
+ ); + } + return (
diff --git a/frontend/src/Editor/Components/Table/Table.jsx b/frontend/src/Editor/Components/Table/Table.jsx index 8d3d7b923c..c0dae3311f 100644 --- a/frontend/src/Editor/Components/Table/Table.jsx +++ b/frontend/src/Editor/Components/Table/Table.jsx @@ -1547,15 +1547,7 @@ export function Table({ ))}
- {loadingState && ( -
- - - -
- )} - - {enablePagination && !loadingState && ( + {enablePagination && ( )}
diff --git a/frontend/src/Editor/Container.jsx b/frontend/src/Editor/Container.jsx index bc8e3607d7..e13fa3a277 100644 --- a/frontend/src/Editor/Container.jsx +++ b/frontend/src/Editor/Container.jsx @@ -689,7 +689,7 @@ export const Container = ({ our  diff --git a/frontend/src/HomePage/TemplateLibraryModal/TemplateLibraryModal.jsx b/frontend/src/HomePage/TemplateLibraryModal/TemplateLibraryModal.jsx index 7ee221cfa8..7ada977916 100644 --- a/frontend/src/HomePage/TemplateLibraryModal/TemplateLibraryModal.jsx +++ b/frontend/src/HomePage/TemplateLibraryModal/TemplateLibraryModal.jsx @@ -63,7 +63,7 @@ export default function TemplateLibraryModal(props) { toast.success('App created.', { position: 'top-center', }); - navigate(`/${getWorkspaceId()}/apps/${data.id}`); + navigate(`/${getWorkspaceId()}/apps/${data.app[0].id}`); }) .catch((e) => { toast.error(e.error, { diff --git a/server/.version b/server/.version index 17bdb70fa8..4e2200b98e 100644 --- a/server/.version +++ b/server/.version @@ -1 +1 @@ -2.19.2 +2.20.1 diff --git a/server/src/controllers/library_apps.controller.ts b/server/src/controllers/library_apps.controller.ts index 74c6a032d8..67c96f83d8 100644 --- a/server/src/controllers/library_apps.controller.ts +++ b/server/src/controllers/library_apps.controller.ts @@ -21,9 +21,8 @@ export class LibraryAppsController { if (!ability.can('createApp', App)) { throw new ForbiddenException('You do not have permissions to perform this action'); } - const newApp = await this.libraryAppCreationService.perform(user, identifier); - - return newApp; + const result = await this.libraryAppCreationService.perform(user, identifier); + return result; } @Get() diff --git a/server/src/modules/import_export_resources/import_export_resources.module.ts b/server/src/modules/import_export_resources/import_export_resources.module.ts index df40321a3f..f366f12aeb 100644 --- a/server/src/modules/import_export_resources/import_export_resources.module.ts +++ b/server/src/modules/import_export_resources/import_export_resources.module.ts @@ -48,5 +48,6 @@ if (process.env.ENABLE_TOOLJET_DB === 'true') { CredentialsService, PostgrestProxyService, ], + exports: [ImportExportResourcesService], }) export class ImportExportResourcesModule {} diff --git a/server/src/modules/library_app/library_app.module.ts b/server/src/modules/library_app/library_app.module.ts index 1817f3cc59..934c5d2fc7 100644 --- a/server/src/modules/library_app/library_app.module.ts +++ b/server/src/modules/library_app/library_app.module.ts @@ -16,9 +16,14 @@ import { PluginsService } from '@services/plugins.service'; import { Plugin } from 'src/entities/plugin.entity'; import { PluginsHelper } from 'src/helpers/plugins.helper'; import { AppEnvironmentService } from '@services/app_environments.service'; +import { ImportExportResourcesModule } from '../import_export_resources/import_export_resources.module'; @Module({ - imports: [TypeOrmModule.forFeature([App, Credential, File, Plugin, DataSource]), CaslModule], + imports: [ + TypeOrmModule.forFeature([App, Credential, File, Plugin, DataSource]), + CaslModule, + ImportExportResourcesModule, + ], providers: [ EncryptionService, CredentialsService, diff --git a/server/src/services/library_app_creation.service.ts b/server/src/services/library_app_creation.service.ts index 80e1439bca..49a231418b 100644 --- a/server/src/services/library_app_creation.service.ts +++ b/server/src/services/library_app_creation.service.ts @@ -1,30 +1,63 @@ import { BadRequestException, Injectable } from '@nestjs/common'; -import { App } from '../entities/app.entity'; import { User } from '../entities/user.entity'; -import { AppImportExportService } from './app_import_export.service'; import { readFileSync } from 'fs'; import { Logger } from 'nestjs-pino'; +import { ImportExportResourcesService } from './import_export_resources.service'; +import { ImportResourcesDto } from '@dto/import-resources.dto'; +import { AppImportExportService } from './app_import_export.service'; @Injectable() export class LibraryAppCreationService { - constructor(private readonly appImportExportService: AppImportExportService, private readonly logger: Logger) {} + constructor( + private readonly importExportResourcesService: ImportExportResourcesService, + private readonly appImportExportService: AppImportExportService, + private readonly logger: Logger + ) {} - async perform(currentUser: User, identifier: string): Promise { - const newApp = await this.appImportExportService.import(currentUser, this.findAppDefinition(identifier)); + async perform(currentUser: User, identifier: string) { + const templateDefinition = this.findTemplateDefinition(identifier); + const importDto = new ImportResourcesDto(); + importDto.organization_id = currentUser.organizationId; + importDto.app = templateDefinition.app || templateDefinition.appV2; + importDto.tooljet_database = templateDefinition.tooljet_database; - return newApp; + if (this.isVersionGreaterThanOrEqual(templateDefinition.tooljet_version, '2.16.0')) { + return await this.importExportResourcesService.import(currentUser, importDto); + } else { + const importedApp = await this.appImportExportService.import(currentUser, templateDefinition); + return { + app: [importedApp], + tooljet_database: [], + }; + } } - findAppDefinition(identifier: string) { - let appDefinition: object; - + findTemplateDefinition(identifier: string) { try { - appDefinition = JSON.parse(readFileSync(`templates/${identifier}/definition.json`, 'utf-8')); + return JSON.parse(readFileSync(`templates/${identifier}/definition.json`, 'utf-8')); } catch (err) { this.logger.error(err); throw new BadRequestException('App definition not found'); } + } - return appDefinition; + isVersionGreaterThanOrEqual(version1: string, version2: string) { + if (!version1) return false; + + const v1Parts = version1.split('-')[0].split('.').map(Number); + const v2Parts = version2.split('-')[0].split('.').map(Number); + + for (let i = 0; i < Math.max(v1Parts.length, v2Parts.length); i++) { + const v1Part = +v1Parts[i] || 0; + const v2Part = +v2Parts[i] || 0; + + if (v1Part < v2Part) { + return false; + } else if (v1Part > v2Part) { + return true; + } + } + + return true; } } diff --git a/server/templates/customer-support-admin/definition.json b/server/templates/customer-support-admin/definition.json new file mode 100644 index 0000000000..c2187d149f --- /dev/null +++ b/server/templates/customer-support-admin/definition.json @@ -0,0 +1,60908 @@ +{ + "tooljet_database": [ + { + "id": "30039c8a-48e4-40b3-abde-7d5bb2807ac1", + "table_name": "support_desk_all_contacts", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"30039c8a-48e4-40b3-abde-7d5bb2807ac1_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "email", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "title", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "organization", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "country", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "language", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + }, + { + "id": "00fa8265-6121-4c20-aee3-40035a7cbb9e", + "table_name": "support_desk_ticket", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"00fa8265-6121-4c20-aee3-40035a7cbb9e_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "customer_name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "customer_email", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "product_version", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "issue_type", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "description", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "supporting_file_name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "priority", + "data_type": "character varying", + "column_default": "p3", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "status", + "data_type": "character varying", + "column_default": "ticket_generated", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "assigned_to", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "created_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "updated_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + } + ], + "app": [ + { + "definition": { + "appV2": { + "id": "fc9b77ec-f4cf-4a7d-b36c-ba899c9c97f0", + "type": "front-end", + "name": "Customer support admin", + "slug": "fc9b77ec-f4cf-4a7d-b36c-ba899c9c97f0", + "isPublic": false, + "isMaintenanceOn": false, + "icon": "folderupload", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "currentVersionId": null, + "userId": "4d572ebe-cd2f-4668-9219-c6e8c1fa2cb1", + "createdAt": "2023-08-11T05:30:50.988Z", + "updatedAt": "2023-09-13T11:24:41.319Z", + "editingVersion": { + "id": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "name": "demo", + "definition": { + "showViewerNavigation": false, + "homePageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436", + "pages": { + "de8cf079-8f08-4a7c-9e2e-2bb4b689a436": { + "components": { + "98fb3c49-91f2-4ef4-813f-19cbfacb1b3c": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 2.9999999999999996, + "height": 950 + } + }, + "withDefaultChildren": false + }, + "48e876d4-7354-4b32-8772-ed35b892cee2": { + "id": "48e876d4-7354-4b32-8772-ed35b892cee2", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 23.595993529569597, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "98fb3c49-91f2-4ef4-813f-19cbfacb1b3c" + }, + "23f00957-210a-4b87-8581-60c626644368": { + "id": "23f00957-210a-4b87-8581-60c626644368", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Open" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 32.558142698678, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "b4b71535-df42-4a93-89b3-97a97478d46b" + }, + "4c59546f-7e3c-4ea4-9252-a971bf975825": { + "id": "4c59546f-7e3c-4ea4-9252-a971bf975825", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "28" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 27.005448066081495, + "width": 19.059604121754052, + "height": 40 + } + }, + "parent": "b4b71535-df42-4a93-89b3-97a97478d46b" + }, + "f79e57c2-c895-4143-aec6-b6bb652ea612": { + "id": "f79e57c2-c895-4143-aec6-b6bb652ea612", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "On hold" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.396794981008757, + "width": 34.4796717418317, + "height": 30 + } + }, + "parent": "c6f5c91c-20e2-44ca-a321-9813cd2d8191" + }, + "6372c60d-3a9a-463e-b4fa-bf223fd3906e": { + "id": "6372c60d-3a9a-463e-b4fa-bf223fd3906e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "3" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 27.005451280395228, + "width": 19.059604121754052, + "height": 40 + } + }, + "parent": "c6f5c91c-20e2-44ca-a321-9813cd2d8191" + }, + "a9a04553-cc17-4d2e-9d94-f6272a9e6e2a": { + "id": "a9a04553-cc17-4d2e-9d94-f6272a9e6e2a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Resolved" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 22.083091655754874, + "width": 23.77294173682577, + "height": 30 + } + }, + "parent": "84971558-d71f-4fb4-8f3f-9af28a895e65" + }, + "b963d44f-1c99-46d9-a569-06e8a3f55d76": { + "id": "b963d44f-1c99-46d9-a569-06e8a3f55d76", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "55" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 27.005448066081495, + "width": 19.059604121754052, + "height": 40 + } + }, + "parent": "84971558-d71f-4fb4-8f3f-9af28a895e65" + }, + "57c9cbb6-3aca-490d-b0a3-e4e73613cb06": { + "id": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06", + "component": { + "properties": { + "tabs": { + "type": "code", + "displayName": "Tabs", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + } + } + }, + "defaultTab": { + "type": "code", + "displayName": "Default tab", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "hideTabs": { + "type": "toggle", + "displayName": "Hide Tabs", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "renderOnlyActiveTab": { + "type": "toggle", + "displayName": "Render only active tab", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onTabSwitch": { + "displayName": "On tab switch" + } + }, + "styles": { + "highlightColor": { + "type": "color", + "displayName": "Highlight Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "tabWidth": { + "type": "select", + "displayName": "Tab width", + "options": [ + { + "name": "Auto", + "value": "auto" + }, + { + "name": "Equally split", + "value": "split" + } + ] + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "highlightColor": { + "value": "#408fccff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "tabWidth": { + "value": "auto" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "tabs": { + "value": "{{[{\"title\":\"Tickets\",\"id\":\"0\"},{\"title\":\"Insights\",\"id\":\"1\"}]}}" + }, + "defaultTab": { + "value": "0" + }, + "hideTabs": { + "value": "{{false}}" + }, + "renderOnlyActiveTab": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "tabs1", + "displayName": "Tabs", + "description": "Tabs component", + "defaultSize": { + "width": 30, + "height": 300 + }, + "defaultChildren": [ + { + "componentName": "Image", + "layout": { + "top": 60, + "left": 37, + "height": 100 + }, + "tab": 0, + "properties": ["source"], + "defaultValue": { + "source": "https://uploads-ssl.webflow.com/6266634263b9179f76b2236e/62666392f32677b5cb2fb84b_logo.svg" + } + }, + { + "componentName": "Text", + "layout": { + "top": 100, + "left": 17, + "height": 50, + "width": 34 + }, + "tab": 1, + "properties": ["text"], + "defaultValue": { + "text": "Open-source low-code framework to build & deploy internal tools within minutes." + } + }, + { + "componentName": "Table", + "layout": { + "top": 0, + "left": 1, + "width": 42, + "height": 250 + }, + "tab": 2 + } + ], + "component": "Tabs", + "actions": [ + { + "handle": "setTab", + "displayName": "Set current tab", + "params": [ + { + "handle": "id", + "displayName": "Id" + } + ] + } + ], + "exposedVariables": { + "currentTab": "" + } + }, + "layouts": { + "desktop": { + "top": 129.99999618530273, + "left": 6.975208964016932, + "width": 40, + "height": 660 + } + } + }, + "568f3ce0-86d1-4a12-be21-5aaadfcb7f45": { + "id": "568f3ce0-86d1-4a12-be21-5aaadfcb7f45", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onRowClicked", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "d7363a0e-cd38-42a9-9fd0-55e48c9a37a3", + "queryParams": [ + [ + "selected_ticket_id", + "{{components.table1.selectedRow.id}}" + ] + ], + "debounce": "" + } + ], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "12" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.tooljetdbGetTickets?.data ?? []}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "id": "87b3ef2d-9467-4c3c-9573-15fb4ccfba97", + "name": "customer_name", + "key": "customer_name", + "columnType": "string", + "autogenerated": true + }, + { + "id": "bea919c1-64b7-4c48-959d-b557f98b4928", + "name": "customer_email", + "key": "customer_email", + "columnType": "string", + "autogenerated": true + }, + { + "id": "c76e4c0b-cd1f-4004-94d2-11c2bcc12823", + "name": "product_version", + "key": "product_version", + "columnType": "string", + "autogenerated": true + }, + { + "id": "5d0521e3-2a93-4273-91ec-a2102361cc56", + "name": "issue_type", + "key": "issue_type", + "columnType": "string", + "autogenerated": true + }, + { + "id": "9ad1b6b4-cdbc-446a-a7de-d92bf509801e", + "name": "status", + "key": "status", + "columnType": "string", + "autogenerated": true + }, + { + "id": "0c5de6cf-8c6f-4bcb-a25f-3d082658a1cb", + "name": "priority", + "key": "priority", + "columnType": "string", + "autogenerated": true + }, + { + "name": "assigned_to", + "id": "05a321eb-b97a-47c9-86e4-7fc59fc39aac" + }, + { + "id": "b7221c74-1949-47af-b709-8ae3d699796b", + "name": "description", + "key": "description", + "columnType": "string", + "autogenerated": true, + "textWrap": "wrap" + }, + { + "id": "8eea6b55-dd70-434b-82f7-c7022a36cb44", + "name": "created_at", + "key": "created_at", + "columnType": "string", + "autogenerated": true + }, + { + "id": "0716e0fb-4a66-4ad1-9a92-53c56619e510", + "name": "updated_at", + "key": "updated_at", + "columnType": "string", + "autogenerated": true + }, + { + "id": "4cee3410-c3a0-4cd2-ba55-93726b35f38d", + "name": "supporting_file_name", + "key": "supporting_file_name", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{true}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 39, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 143, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 370, + "d7ef4587-d597-44fe-a09f-1e8a5afe7ebd": 136, + "80a7c021-1406-495f-98d2-c8b1789748d6": 169, + "e7828dc4-90f6-4a60-aadb-58356278dff9": 142, + "aa56b72c-5246-47a7-800d-b19a7208970a": 105, + "01397da4-b41e-4540-aec5-440e70fd38d5": 337, + "c76e4c0b-cd1f-4004-94d2-11c2bcc12823": 126, + "87b3ef2d-9467-4c3c-9573-15fb4ccfba97": 149, + "5d0521e3-2a93-4273-91ec-a2102361cc56": 127, + "9ad1b6b4-cdbc-446a-a7de-d92bf509801e": 142, + "0c5de6cf-8c6f-4bcb-a25f-3d082658a1cb": 84, + "b7221c74-1949-47af-b709-8ae3d699796b": 509, + "leftActions": 76 + } + }, + "actions": { + "value": [] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "email", + "Issue", + "Issue type", + "assigned_to", + "Assigned to", + "Status" + ] + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 2.3255813953488373, + "width": 40.99862260433195, + "height": 550 + } + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-0" + }, + "054c1d84-5dee-429d-b400-dd5cc9ca1358": { + "id": "054c1d84-5dee-429d-b400-dd5cc9ca1358", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.976742008093624, + "width": 40, + "height": 120 + } + } + }, + "38e4ee86-ca85-461a-be40-9c21f93e23e6": { + "id": "38e4ee86-ca85-461a-be40-9c21f93e23e6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#408fccff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Support Desk Dashboard" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 29.999984741210938, + "left": 2.325582230226699, + "width": 15, + "height": 40 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "633529cd-6bd8-4305-b1d6-438786e5eba0": { + "id": "633529cd-6bd8-4305-b1d6-438786e5eba0", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container4", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 62.79069402368247, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "c8ecaf02-ac42-4ac5-8339-db3cdb718e23": { + "id": "c8ecaf02-ac42-4ac5-8339-db3cdb718e23", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Open" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.9767441860465125, + "width": 34.00000000000001, + "height": 30 + } + }, + "parent": "633529cd-6bd8-4305-b1d6-438786e5eba0" + }, + "bbee3d54-2e13-4965-88be-52ce48f17f98": { + "id": "bbee3d54-2e13-4965-88be-52ce48f17f98", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.openTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text13", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": -0.000001088976443242018, + "width": 41, + "height": 40 + } + }, + "parent": "633529cd-6bd8-4305-b1d6-438786e5eba0" + }, + "21a6a06c-9fb6-4bd5-b751-1d358fe5ab3f": { + "id": "21a6a06c-9fb6-4bd5-b751-1d358fe5ab3f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container5", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 74.41860263741073, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "7da1125c-55c3-4df0-bf38-d25df707aa31": { + "id": "7da1125c-55c3-4df0-bf38-d25df707aa31", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "On hold" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.396824359431653, + "width": 34.4796717418317, + "height": 30 + } + }, + "parent": "21a6a06c-9fb6-4bd5-b751-1d358fe5ab3f" + }, + "7f6628f2-26d2-46c5-bff1-56c8c645a10c": { + "id": "7f6628f2-26d2-46c5-bff1-56c8c645a10c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.onHoldTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0.0000032272666601329547, + "width": 41, + "height": 40 + } + }, + "parent": "21a6a06c-9fb6-4bd5-b751-1d358fe5ab3f" + }, + "c00bb9dd-69bd-419e-ad44-21875907526d": { + "id": "c00bb9dd-69bd-419e-ad44-21875907526d", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container6", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 86.04651162790698, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "e62a5a26-4ed0-4c81-b90e-cdb5800e5ead": { + "id": "e62a5a26-4ed0-4c81-b90e-cdb5800e5ead", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Resolved" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 9.302337471945389, + "width": 33.00000000000001, + "height": 30 + } + }, + "parent": "c00bb9dd-69bd-419e-ad44-21875907526d" + }, + "7e2aa3ca-4f27-4cb7-ab60-b4364c4d70eb": { + "id": "7e2aa3ca-4f27-4cb7-ab60-b4364c4d70eb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.resolvedTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": -0.0000032272666601329547, + "width": 41, + "height": 40 + } + }, + "parent": "c00bb9dd-69bd-419e-ad44-21875907526d" + }, + "61aca46a-063e-4c7a-a73d-acb1986dd6a0": { + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "#36AF8B" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Number of ticket in this month" + }, + "primaryValue": { + "value": "{{queries.getTicketStats.data.thisMonthTickets}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "2.85" + }, + "secondarySignDisplay": { + "value": "positive" + }, + "loadingState": { + "value": "{{false}}" + }, + "hideSecondary": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics1", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-1", + "layouts": { + "desktop": { + "top": 120, + "left": 67.4418643269094, + "width": 11, + "height": 160 + } + }, + "withDefaultChildren": false + }, + "37f09e14-bd7d-4c40-8126-a58fdd87e725": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "25" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "" + }, + "markerColor": { + "value": "#75b5e4ff" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{false}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "jsonDescription": { + "value": "{\n \"data\": [\n {\n \"x\": [\n \"Jan\",\n \"Feb\",\n \"Mar\"\n ],\n \"y\": [\n 100,\n 80,\n 40\n ],\n \"type\": \"bar\"\n }\n ]\n }" + }, + "type": { + "value": "line" + }, + "data": { + "value": "{{queries?.getTicketStats?.data?.chartData ?? []}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart1", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-1", + "layouts": { + "desktop": { + "top": 90, + "left": 6.97673928044782, + "width": 23.97233184729657, + "height": 400 + } + }, + "withDefaultChildren": false + }, + "b3873d57-dc59-41bc-a393-98532266b5cd": { + "id": "b3873d57-dc59-41bc-a393-98532266b5cd", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "#36AF8B" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Number of tickets in this quarter" + }, + "primaryValue": { + "value": "{{queries.getTicketStats.data.thisQuarterTickets}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "2.85" + }, + "secondarySignDisplay": { + "value": "positive" + }, + "loadingState": { + "value": "{{false}}" + }, + "hideSecondary": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics2", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 310, + "left": 67.4418643269094, + "width": 11, + "height": 160 + } + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-1" + }, + "466676ae-e094-46ba-b51f-0ca1042d97b0": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Support tickets this year" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-1", + "layouts": { + "desktop": { + "top": 40, + "left": 6.97674250771448, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "e21b0b05-65bc-45c3-806d-7a1a468db96b": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#9b9b9bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Track and manage all your tickets in one place" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358", + "layouts": { + "desktop": { + "top": 70, + "left": 2.325581395348837, + "width": 15, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "2ec7d535-21d2-4ad4-b455-a9aacb72d10a": { + "id": "2ec7d535-21d2-4ad4-b455-a9aacb72d10a", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "8e03c8cc-643f-4adf-995b-12600a976954" + } + ], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconUsers" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 23.255812866661383, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "98fb3c49-91f2-4ef4-813f-19cbfacb1b3c" + }, + "635e6753-dd2b-4094-a94c-ddd4a223847b": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{20}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R
N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "98fb3c49-91f2-4ef4-813f-19cbfacb1b3c", + "layouts": { + "desktop": { + "top": 30, + "left": 0.000006130624711886412, + "width": 40, + "height": 60 + } + }, + "withDefaultChildren": false + }, + "9bd1fea2-ae0a-4acf-8d5b-e541c7a5aa5a": { + "id": "9bd1fea2-ae0a-4acf-8d5b-e541c7a5aa5a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Open" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.9767441860465125, + "width": 34.00000000000001, + "height": 30 + } + }, + "parent": "ec5f4f15-59e6-472b-bdfb-b6be903bb2d6" + }, + "d1f08f35-4f58-4654-b77d-2405df0c9426": { + "id": "d1f08f35-4f58-4654-b77d-2405df0c9426", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "10" + }, + "loadingState": { + "value": "{{queries.getTickets.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text25", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 40 + } + }, + "parent": "ec5f4f15-59e6-472b-bdfb-b6be903bb2d6" + }, + "e2507b65-69f8-487a-b94e-f3521eea3c92": { + "id": "e2507b65-69f8-487a-b94e-f3521eea3c92", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "On hold" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.396824359431653, + "width": 34.4796717418317, + "height": 30 + } + }, + "parent": "3fa65aac-08d8-4811-9613-9fbe740ce5dc" + }, + "5d28d2a6-77c4-4cea-99fd-e6ac6f531921": { + "id": "5d28d2a6-77c4-4cea-99fd-e6ac6f531921", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "5" + }, + "loadingState": { + "value": "{{queries.getTickets.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": -0.000006093314777189107, + "width": 41, + "height": 40 + } + }, + "parent": "3fa65aac-08d8-4811-9613-9fbe740ce5dc" + }, + "1b057c19-bd16-4049-978e-edd03b23b3a4": { + "id": "1b057c19-bd16-4049-978e-edd03b23b3a4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Resolved" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 9.302337471945389, + "width": 33.00000000000001, + "height": 30 + } + }, + "parent": "b4d47e2f-aff3-43ba-b9fd-20ea62deb25a" + }, + "478fddd1-ad38-458d-88bb-fef5210ec854": { + "id": "478fddd1-ad38-458d-88bb-fef5210ec854", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "8" + }, + "loadingState": { + "value": "{{queries.getTickets.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 40 + } + }, + "parent": "b4d47e2f-aff3-43ba-b9fd-20ea62deb25a" + }, + "7371587c-c42a-4f9f-b5db-0ec08a9c2e18": { + "id": "7371587c-c42a-4f9f-b5db-0ec08a9c2e18", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container7", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 51.162792599606334, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "5f1d48f1-f340-4721-a4ac-0aac8bb9d0f2": { + "id": "5f1d48f1-f340-4721-a4ac-0aac8bb9d0f2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#4a90e2ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "In progress" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text23", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.976716444934936, + "width": 34.00000000000001, + "height": 30 + } + }, + "parent": "7371587c-c42a-4f9f-b5db-0ec08a9c2e18" + }, + "b3832b02-4a58-4df6-9e3b-801b4a2dd165": { + "id": "b3832b02-4a58-4df6-9e3b-801b4a2dd165", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#4a90e2ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.inProgressTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": -0.000001088976443242018, + "width": 41, + "height": 40 + } + }, + "parent": "7371587c-c42a-4f9f-b5db-0ec08a9c2e18" + }, + "1773fa69-3597-4662-b152-a12f78d8f1ce": { + "id": "1773fa69-3597-4662-b152-a12f78d8f1ce", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container8", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 39.534873656766905, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "0142dbea-99ba-49d1-967e-873124642ffe": { + "id": "0142dbea-99ba-49d1-967e-873124642ffe", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#4a90e2ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Generated" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.976745275022956, + "width": 34.00000000000001, + "height": 30 + } + }, + "parent": "1773fa69-3597-4662-b152-a12f78d8f1ce" + }, + "10dbb65f-37db-4553-936d-5bc91add178d": { + "id": "10dbb65f-37db-4553-936d-5bc91add178d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#4a90e2ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.generatedTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text32", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0.000017676948260714198, + "width": 41, + "height": 40 + } + }, + "parent": "1773fa69-3597-4662-b152-a12f78d8f1ce" + } + }, + "handle": "home", + "name": "Dashboard", + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "9a4a6f22-a06e-4b58-bf33-fec1f98afd21", + "queryName": "tooljetdbGetTickets", + "parameters": {} + } + ] + }, + "d7363a0e-cd38-42a9-9fd0-55e48c9a37a3": { + "name": "ticket_details", + "handle": "ticket-details", + "components": { + "cc45bdd7-624d-474f-8c41-687c16571018": { + "id": "cc45bdd7-624d-474f-8c41-687c16571018", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#F8F9FA", + "fxActive": false + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.976739120830055, + "width": 40, + "height": 120 + } + } + }, + "b661ce6b-22d4-48c4-8d09-fc8d2169f06a": { + "id": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.tooljetdbUpdateTicketDetails.isLoading || queries.sendTicketAssigneeEmail.isLoading || queries.sendTicketResponseEmail.isLoading}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "fxActive": true, + "value": "{{queries.tooljetdbGetTicketDetails.isLoading}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 130, + "left": 11.627906976744187, + "width": 36, + "height": 880 + } + } + }, + "b1ec33bf-eae1-4f3d-a531-bdf7e6c0f88d": { + "id": "b1ec33bf-eae1-4f3d-a531-bdf7e6c0f88d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344D", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 39.598503374221394, + "width": 10, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "780f0ad1-4ee2-45ce-81db-93dd6f6d105e": { + "id": "780f0ad1-4ee2-45ce-81db-93dd6f6d105e", + "component": { + "properties": { + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "defaultValue": { + "type": "code", + "displayName": "Default Value", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "placeholder": { + "value": "Enter response here..." + }, + "defaultValue": { + "value": "Hi {{queries.tooljetdbGetTicketDetails.data.customer_name}}\nThanks for contacting us.\nWe're working on ticket #{{queries.tooljetdbGetTicketDetails.data.id}}, and will let you know once we have an update.\n\nThanks and regards\nB R A N D" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "richtexteditor1", + "displayName": "Text Editor", + "description": "Rich text editor", + "component": "RichTextEditor", + "defaultSize": { + "width": 16, + "height": 210 + }, + "exposedVariables": { + "value": "" + } + }, + "layouts": { + "desktop": { + "top": 540, + "left": 2.32558002220012, + "width": 40.99999999999999, + "height": 250 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "32ff15d9-4367-450b-b5b9-eea67c508b5e": { + "id": "32ff15d9-4367-450b-b5b9-eea67c508b5e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "e06d4b30-ab28-4ef7-89cc-3266b3811666", + "queryName": "sendTicketResponseEmail", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{queries.tooljetdbGetTicketDetails.isLoading}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Send" + }, + "loadingState": { + "value": "{{queries.sendTicketResponseEmail.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 810, + "left": 88.37208985812151, + "width": 4.023585347575455, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "da0b82a8-e130-43c6-8c24-6052d6f61c1b": { + "id": "da0b82a8-e130-43c6-8c24-6052d6f61c1b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#000000ff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#b8b3b3ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 810, + "left": 76.74418386537887, + "width": 4.0323608178581205, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "45416466-17cd-4472-afc0-dea889574572": { + "id": "45416466-17cd-4472-afc0-dea889574572", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{0}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{queries?.tooljetdbGetTicketDetails?.data?.description ?? \"\"}}" + }, + "placeholder": { + "value": "Placeholder text" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "Issuetext", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 39.53488372093023, + "width": 24.999999999999996, + "height": 260 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "e5990225-15ba-4c78-8335-343843c09a11": { + "id": "e5990225-15ba-4c78-8335-343843c09a11", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344D", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Response" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 500, + "left": 2.3256015885875776, + "width": 7, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "e2243986-293f-4c15-b25c-42d4ac19a7ea": { + "id": "e2243986-293f-4c15-b25c-42d4ac19a7ea", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#00000099" + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.tooljetdbGetTicketDetails?.data?.customer_name ?? \"\"}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 25.58139534883721, + "width": 19.999999999999996, + "height": 30 + } + }, + "parent": "cc45bdd7-624d-474f-8c41-687c16571018" + }, + "7d6c2e4e-def0-43e9-a17e-28739538e2b1": { + "id": "7d6c2e4e-def0-43e9-a17e-28739538e2b1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#00000099" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.tooljetdbGetTicketDetails?.data?.customer_email ?? \"\"}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 25.58139534883721, + "width": 19.999999999999996, + "height": 30 + } + }, + "parent": "cc45bdd7-624d-474f-8c41-687c16571018" + }, + "fecb2f87-75d9-405d-bbe4-695ee5d772c7": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container6", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "parent": "cc45bdd7-624d-474f-8c41-687c16571018", + "layouts": { + "desktop": { + "top": 20, + "left": 6.9767440744207105, + "width": 7, + "height": 70 + } + }, + "withDefaultChildren": false + }, + "0aabf007-3c01-4445-bb10-da0a0df61c32": { + "id": "0aabf007-3c01-4445-bb10-da0a0df61c32", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "#{{queries.tooljetdbGetTicketDetails.data.id}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTicketDetails.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 4.651162790697674, + "width": 36.99999999999999, + "height": 40 + } + }, + "parent": "fecb2f87-75d9-405d-bbe4-695ee5d772c7" + }, + "53eaf113-fbe1-4223-8e5d-fc5715eed719": { + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436" + } + ], + "styles": { + "iconColor": { + "value": "#12344dff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconArrowLeft" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon3", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "cc45bdd7-624d-474f-8c41-687c16571018", + "layouts": { + "desktop": { + "top": 40, + "left": 0.23445098215632268, + "width": 1.9911509053210048, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "58b683e4-a81f-4395-8c3e-5922214694f3": { + "id": "58b683e4-a81f-4395-8c3e-5922214694f3", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container7", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 2.9999999999999996, + "height": 1180 + } + } + }, + "e2a8b30f-80cb-426b-b9ca-da8c32d3948b": { + "id": "e2a8b30f-80cb-426b-b9ca-da8c32d3948b", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436" + } + ], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 23.595999971330436, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "58b683e4-a81f-4395-8c3e-5922214694f3" + }, + "e34139e2-25f6-48d0-9a18-0f06d0e28d6d": { + "id": "e34139e2-25f6-48d0-9a18-0f06d0e28d6d", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "8e03c8cc-643f-4adf-995b-12600a976954" + } + ], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconUsers" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon4", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 23.255813955637826, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "58b683e4-a81f-4395-8c3e-5922214694f3" + }, + "55b18389-2696-4cb9-8c74-7f98d86e796b": { + "id": "55b18389-2696-4cb9-8c74-7f98d86e796b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{20}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R
N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0.000006130624711886412, + "width": 40, + "height": 60 + } + }, + "parent": "58b683e4-a81f-4395-8c3e-5922214694f3" + }, + "ed68d354-065c-43c1-ab6b-328abfcffbb2": { + "id": "ed68d354-065c-43c1-ab6b-328abfcffbb2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344D", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Ticket details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 2.3255786342065443, + "width": 10, + "height": 30 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "a9ea77d7-e754-41f3-92b5-b8ccdb71adf5": { + "id": "a9ea77d7-e754-41f3-92b5-b8ccdb71adf5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 2.3255819827807978, + "width": 3.9892582010199282, + "height": 30 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "9ad62358-df32-4ddb-a0b2-26c3db74ac98": { + "id": "9ad62358-df32-4ddb-a0b2-26c3db74ac98", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}", + "fxActive": false + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{queries.tooljetdbGetTicketDetails.data.status}}" + }, + "values": { + "value": "{{[\"ticket_generated\", \"open\", \"in_progress\", \"on_hold\", \"resolved\"]}}" + }, + "display_values": { + "value": "{{[\"Ticket generated\", \"Open\", \"In progress\", \"On hold\", \"Resolved\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}", + "fxActive": false + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 2.3255819827807978, + "width": 9, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "c7c2df1b-6f3f-43db-9cc9-b101b9c0e9db": { + "id": "c7c2df1b-6f3f-43db-9cc9-b101b9c0e9db", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Priority" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 25.581395928846742, + "width": 3.9892582010199282, + "height": 30 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "991d588a-d4ed-43b2-8e4d-0f9bae3c5b94": { + "id": "991d588a-d4ed-43b2-8e4d-0f9bae3c5b94", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}", + "fxActive": false + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{queries.tooljetdbGetTicketDetails.data.priority}}" + }, + "values": { + "value": "{{[\"p0\", \"p1\", \"p2\", \"p3\", \"p4\"]}}" + }, + "display_values": { + "value": "{{[\"P0 - Blocker\", \"P1 - Critical\", \"P2 - Important\", \"P3 - Minor\", \"P4 - Not important\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}", + "fxActive": false + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 25.58139788942742, + "width": 9, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "b9a08e79-54eb-4902-904d-b06ffb305932": { + "id": "b9a08e79-54eb-4902-904d-b06ffb305932", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Assigned to" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 48.83720791433201, + "width": 8, + "height": 30 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "6e7283ba-4172-4b1d-88c6-d7d34da7b291": { + "id": "6e7283ba-4172-4b1d-88c6-d7d34da7b291", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}", + "fxActive": false + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput1.value) || components.textinput1.value == \"\" ? true : \"Invalid email format\"}}" + } + }, + "properties": { + "value": { + "value": "{{queries?.tooljetdbGetTicketDetails?.data?.assigned_to ?? \"\"}}" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 48.83720863023707, + "width": 17, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "20b0adee-a9ae-480a-a8a3-0837aa7feff4": { + "id": "20b0adee-a9ae-480a-a8a3-0837aa7feff4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "59a73d75-880c-42cd-9c03-5aadc2264f2d", + "queryName": "tooljetdbUpdateTicketDetails", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{components.dropdown1.value == undefined || components.dropdown2.value == undefined || !components.textinput1.isValid || (components.textinput1.value == queries.tooljetdbGetTicketDetails.data.assigned_to && components.dropdown1.value == queries.tooljetdbGetTicketDetails.data.status && components.dropdown2.value == queries.tooljetdbGetTicketDetails.data.priority)}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Save" + }, + "loadingState": { + "value": "{{queries.tooljetdbUpdateTicketDetails.isLoading || queries.sendTicketAssigneeEmail.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button5", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 90.69766595916028, + "width": 2.9999999999999996, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "c05c191a-c531-45c0-9eb7-f4e368b887a4": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#88888880" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a", + "layouts": { + "desktop": { + "top": 150, + "left": 2.3255819827807978, + "width": 40.99999999999999, + "height": 10 + } + }, + "withDefaultChildren": false + }, + "78b17afa-aa2d-479c-b3e1-509b5c77b9b6": { + "component": { + "properties": { + "source": { + "type": "code", + "displayName": "URL", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "alternativeText": { + "type": "code", + "displayName": "Alternative text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "zoomButtons": { + "type": "toggle", + "displayName": "Zoom button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "rotateButton": { + "type": "toggle", + "displayName": "Rotate button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + } + }, + "styles": { + "borderType": { + "type": "select", + "displayName": "Border type", + "options": [ + { + "name": "None", + "value": "none" + }, + { + "name": "Rounded", + "value": "rounded" + }, + { + "name": "Circle", + "value": "rounded-circle" + }, + { + "name": "Thumbnail", + "value": "img-thumbnail" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "imageFit": { + "type": "select", + "displayName": "Image fit", + "options": [ + { + "name": "fill", + "value": "fill" + }, + { + "name": "contain", + "value": "contain" + }, + { + "name": "cover", + "value": "cover" + }, + { + "name": "scale-down", + "value": "scale-down" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderType": { + "value": "none" + }, + "padding": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{(queries?.tooljetdbGetTicketDetails?.data?.supporting_file_name ?? \"\") == \"\"}}", + "fxActive": true + }, + "imageFit": { + "value": "contain" + }, + "backgroundColor": { + "value": "#8888881a" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "source": { + "value": "{{queries.tooljetdbGetTicketDetails.data.supporting_file_name == \"\" ? \"\" : queries.s3GetImage.data.url}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTicketDetails.isLoading || queries.s3GetImage.isLoading}}", + "fxActive": true + }, + "alternativeText": { + "value": "No image uploaded for this ticket." + }, + "zoomButtons": { + "value": "{{(queries?.tooljetdbGetTicketDetails?.data?.supporting_file_name ?? \"\") != \"\"}}", + "fxActive": true + }, + "rotateButton": { + "value": "{{(queries?.tooljetdbGetTicketDetails?.data?.supporting_file_name ?? \"\") != \"\"}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "image1", + "displayName": "Image", + "description": "Display an Image", + "defaultSize": { + "width": 3, + "height": 100 + }, + "component": "Image", + "exposedVariables": {} + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a", + "layouts": { + "desktop": { + "top": 220, + "left": 2.325576101038764, + "width": 15.000000000000002, + "height": 260 + } + }, + "withDefaultChildren": false + }, + "ba259812-1a03-4d6f-b19c-e58963f498e4": { + "id": "ba259812-1a03-4d6f-b19c-e58963f498e4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344D", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Uploaded image" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text13", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 2.325582570212763, + "width": 10, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + } + }, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "a2e98309-9352-4836-b64d-dd9c4f7f4822", + "queryName": "tooljetdbGetTicketDetails", + "parameters": {} + } + ] + }, + "8e03c8cc-643f-4adf-995b-12600a976954": { + "name": "all_customers", + "handle": "all-customers", + "components": { + "ceee4b9a-82ce-4cf6-942a-309e63524e44": { + "id": "ceee4b9a-82ce-4cf6-942a-309e63524e44", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "All Contacts" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text1", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 9.302324210708631, + "width": 13, + "height": 50 + } + } + }, + "48c4cf8a-f888-46d1-b10c-e559fe274b66": { + "id": "48c4cf8a-f888-46d1-b10c-e559fe274b66", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#9b9b9bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{!queries.tooljetdbGetAllContacts.isLoading}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`${(queries?.tooljetdbGetAllContacts?.data ?? []).length} total contacts`}}" + }, + "loadingState": { + "value": "", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text2", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 9.30232558139535, + "width": 9, + "height": 30 + } + } + }, + "2f23505a-a635-4ee5-ae2f-d94f8215133e": { + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetAllContacts.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.tooljetdbGetAllContacts?.data ?? []}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{20}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true + }, + { + "id": "573f181f-9df0-4dbb-9f8e-4a1ce660689a", + "name": "title", + "key": "title", + "columnType": "string", + "autogenerated": true + }, + { + "id": "0b02428a-b586-471f-8e92-269d51d2f353", + "name": "organization", + "key": "organization", + "columnType": "string", + "autogenerated": true + }, + { + "id": "6222c541-6ca9-41de-ba1e-56fcfe484a9a", + "name": "country", + "key": "country", + "columnType": "string", + "autogenerated": true + }, + { + "id": "35c77b67-fbce-479b-b610-9c12daf01848", + "name": "language", + "key": "language", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 44, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 194, + "434f0654-adfd-4978-99ea-6a8c8359e0bc": 146, + "862b7244-f3d3-4bcb-a35a-519adb88118f": 134, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 248, + "a2d24c22-78d8-4b80-b911-c04d68892613": 28, + "573f181f-9df0-4dbb-9f8e-4a1ce660689a": 191, + "6222c541-6ca9-41de-ba1e-56fcfe484a9a": 197, + "35c77b67-fbce-479b-b610-9c12daf01848": 174 + } + }, + "actions": { + "value": [] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "new_column2", + "Tags", + "Timezone", + "Last updated" + ] + }, + "showAddNewRowButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + } + ] + }, + "layouts": { + "desktop": { + "top": 129.99999237060547, + "left": 9.302300670514478, + "width": 38, + "height": 660 + } + }, + "withDefaultChildren": false + }, + "3ccfb4d8-7912-4063-9f90-2d16baeae96d": { + "id": "3ccfb4d8-7912-4063-9f90-2d16baeae96d", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container1", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0.00000762939453125, + "left": 0, + "width": 2.9999999999999996, + "height": 950 + } + } + }, + "a798e257-82cd-4e9b-99e3-5cb2c36fda44": { + "id": "a798e257-82cd-4e9b-99e3-5cb2c36fda44", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436" + } + ], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 23.59600069407166, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "3ccfb4d8-7912-4063-9f90-2d16baeae96d" + }, + "df28f654-ee9e-462f-a5e8-07d12a63b393": { + "id": "df28f654-ee9e-462f-a5e8-07d12a63b393", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconUsers" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 23.255806791135765, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "3ccfb4d8-7912-4063-9f90-2d16baeae96d" + }, + "251dc6be-a4dc-41c3-8caa-55bf53225a9b": { + "id": "251dc6be-a4dc-41c3-8caa-55bf53225a9b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{20}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R
N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text3", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0.000006130624711886412, + "width": 40, + "height": 60 + } + }, + "parent": "3ccfb4d8-7912-4063-9f90-2d16baeae96d" + }, + "1dab8e54-bcff-47aa-a730-f571faa87a0c": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#000000" + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#12344dff" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add Contact" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add Contact" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "470px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal1", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 100, + "left": 76.74418904445707, + "width": 9, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "8716b72a-5a96-40b3-bdf7-f372ff148fc7": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Contact" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 83.72115914129401, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "af813b96-b45f-4f8f-a676-832bc4289fe4": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text4", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 30, + "left": 6.9767462792955985, + "width": 7, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "e7653385-3303-4381-9fef-5cba26b8462c": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 30, + "left": 23.255813953488374, + "width": 30.000000000000004, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "f5a9c2bd-7ccc-4286-bb69-f24ef4f3a7a0": { + "id": "f5a9c2bd-7ccc-4286-bb69-f24ef4f3a7a0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 6.976742690868592, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "0b3c8af9-066c-4000-9660-854ab827728f": { + "id": "0b3c8af9-066c-4000-9660-854ab827728f", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Title" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 6.976744186046512, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "6d1beea3-5020-43a9-a554-d295f6e786c8": { + "id": "6d1beea3-5020-43a9-a554-d295f6e786c8", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Organization" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 6.976741195690673, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "c5666389-6356-4285-ac42-7f607fb2b1d4": { + "id": "c5666389-6356-4285-ac42-7f607fb2b1d4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Country" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 270, + "left": 6.976742690868592, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "07736ee2-99da-4d47-9311-bd55a663a500": { + "id": "07736ee2-99da-4d47-9311-bd55a663a500", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Language" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 330, + "left": 6.976744186046512, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "622183b9-d87b-4b12-aa12-5e596191c2c0": { + "id": "622183b9-d87b-4b12-aa12-5e596191c2c0", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput2.value) || components.textinput2.value == \"\" ? true : \"Invalid email format\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 23.255809567633154, + "width": 30.000000000000004, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "c8ca9b1d-1810-4f6e-8af8-779ca6a589e7": { + "id": "c8ca9b1d-1810-4f6e-8af8-779ca6a589e7", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter title" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput3", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 23.255813953488374, + "width": 30.000000000000004, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "806313f7-17d1-4c72-8200-62c29493be86": { + "id": "806313f7-17d1-4c72-8200-62c29493be86", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter organization name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput4", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 23.255813953488374, + "width": 30.000000000000004, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "9abdde34-6893-4032-ad59-f9e402e345b1": { + "id": "9abdde34-6893-4032-ad59-f9e402e345b1", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter country name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput5", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 270, + "left": 23.2558140531669, + "width": 30.000000000000004, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "30d4806a-6cf2-4120-b4aa-521a7b4c47ae": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{\"english\"}}" + }, + "values": { + "value": "{{[\"english\", \"hindi\", \"french\", \"arabic\", \"spanish\", \"portuguese\", \"german\", \"russian\", \"malay\", \"italian\"]}}" + }, + "display_values": { + "value": "{{[\"English\", \"Hindi\", \"French\", \"Arabic\", \"Spanish\", \"Portuguese\", \"German\", \"Russian\", \"Malay\", \"Italian\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a language" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 330, + "left": 23.255814450597605, + "width": 30.000000000000004, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ff16e8e2-779d-4f5c-be11-9689236131f8": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "c9a498c4-8e43-4a60-a9a7-b312ecbad39e", + "queryName": "tooljetdbAddContact", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{components.textinput1.value.length == 0 || components.textinput2.value.length == 0 || !components.textinput2.isValid || components.textinput3.value.length == 0 || components.textinput4.value.length == 0 || components.textinput5.value.length == 0 || components.dropdown1.value == undefined}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add contact" + }, + "loadingState": { + "value": "{{queries.tooljetdbAddContact.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 400, + "left": 76.74418973590058, + "width": 7, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "e971eff3-812c-4a03-b7cc-4e15d148bda0": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#12344dff" + }, + "loaderColor": { + "value": "#12344dff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#12344dff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button3", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 400, + "left": 62.7907008641315, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + } + }, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "c89ea0b0-4ab0-419f-a82c-b7b018bfc9e3", + "queryName": "tooljetdbGetAllContacts", + "parameters": {} + } + ] + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "17000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": "1200", + "canvasBackgroundColor": "", + "backgroundFxQuery": "" + } + }, + "appId": "fc9b77ec-f4cf-4a7d-b36c-ba899c9c97f0", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-08-11T05:30:50.997Z", + "updatedAt": "2023-10-11T07:05:13.559Z" + }, + "dataQueries": [ + { + "id": "9a4a6f22-a06e-4b58-bf33-fec1f98afd21", + "name": "tooljetdbGetTickets", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "support_desk_ticket", + "list_rows": { + "order_filters": { + "1": { + "column": "id", + "order": "desc", + "id": "1" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "9c730665-05d0-4eff-9f29-938aa915ff0b", + "queryName": "getTicketStats", + "parameters": {} + } + ], + "table_id": "00fa8265-6121-4c20-aee3-40035a7cbb9e" + }, + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "createdAt": "2023-08-31T19:43:01.486Z", + "updatedAt": "2023-09-13T05:11:25.750Z" + }, + { + "id": "a2e98309-9352-4836-b64d-dd9c4f7f4822", + "name": "tooljetdbGetTicketDetails", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": true, + "table_name": "support_desk_ticket", + "list_rows": { + "where_filters": { + "1": { + "column": "id", + "operator": "eq", + "value": "{{globals.urlparams.selected_ticket_id}}", + "id": "1" + } + } + }, + "transformation": "return data[0];", + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "5cc1664d-c88d-4274-beef-b6ea028bfb6a", + "queryName": "s3GetImage", + "parameters": {}, + "runOnlyIf": "{{queries.tooljetdbGetTicketDetails.data.supporting_file_name != \"\"}}" + } + ], + "table_id": "00fa8265-6121-4c20-aee3-40035a7cbb9e" + }, + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "createdAt": "2023-08-31T20:08:36.066Z", + "updatedAt": "2023-09-13T05:11:25.756Z" + }, + { + "id": "59a73d75-880c-42cd-9c03-5aadc2264f2d", + "name": "tooljetdbUpdateTicketDetails", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "support_desk_ticket", + "list_rows": {}, + "update_rows": { + "columns": { + "0": { + "column": "status", + "value": "{{components.dropdown1.value}}" + }, + "1": { + "column": "priority", + "value": "{{components.dropdown2.value}}" + }, + "2": { + "column": "assigned_to", + "value": "{{components.textinput1.value}}" + }, + "4": { + "column": "updated_at", + "value": "{{moment().format()}}" + } + }, + "where_filters": { + "2": { + "column": "id", + "operator": "eq", + "value": "{{globals.urlparams.selected_ticket_id}}", + "id": "2" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Ticket updated successfully.", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "26d50560-a367-462a-9b8c-aa66dc32a806", + "queryName": "sendTicketAssigneeEmail", + "parameters": {}, + "runOnlyIf": "{{components.textinput1.value != queries.tooljetdbGetTicketDetails.data.assigned_to || components.dropdown1.value != queries.tooljetdbGetTicketDetails.data.status || components.dropdown2.value != queries.tooljetdbGetTicketDetails.data.priority}}" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "a2e98309-9352-4836-b64d-dd9c4f7f4822", + "queryName": "tooljetdbGetTicketDetails", + "parameters": {}, + "runOnlyIf": "{{components.textinput1.value == queries.tooljetdbGetTicketDetails.data.assigned_to}}" + } + ], + "table_id": "00fa8265-6121-4c20-aee3-40035a7cbb9e" + }, + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "createdAt": "2023-08-31T20:27:26.400Z", + "updatedAt": "2023-09-13T05:11:25.735Z" + }, + { + "id": "9c730665-05d0-4eff-9f29-938aa915ff0b", + "name": "getTicketStats", + "options": { + "code": "data = queries.tooljetdbGetTickets.data;\n\nlast3Months = [\n moment().add(-2, \"month\").format(\"MMM YYYY\"),\n moment().add(-1, \"month\").format(\"MMM YYYY\"),\n moment().format(\"MMM YYYY\"),\n];\n\nticketStats = {\n generatedTickets: 0,\n inProgressTickets: 0,\n openTickets: 0,\n onHoldTickets: 0,\n resolvedTickets: 0,\n thisMonthTickets: 0,\n thisQuarterTickets: 0,\n chartData: [\n { x: last3Months[0], y: 0 },\n { x: last3Months[1], y: 0 },\n { x: last3Months[2], y: 0 },\n ],\n};\n\ndata.forEach((ticket) => {\n ticketStats.openTickets += ticket.status == \"open\" ? 1 : 0;\n ticketStats.onHoldTickets += ticket.status == \"on_hold\" ? 1 : 0;\n ticketStats.resolvedTickets += ticket.status == \"resolved\" ? 1 : 0;\n ticketStats.generatedTickets += ticket.status == \"ticket_generated\" ? 1 : 0;\n ticketStats.inProgressTickets += ticket.status == \"in_progress\" ? 1 : 0;\n ticketStats.thisMonthTickets +=\n moment(ticket.created_at).format(\"MM|YYYY\") == moment().format(\"MM|YYYY\")\n ? 1\n : 0;\n ticketStats.thisQuarterTickets +=\n moment(ticket.created_at).format(\"Q|YYYY\") == moment().format(\"Q|YYYY\")\n ? 1\n : 0;\n if (last3Months.includes(moment(ticket.created_at).format(\"MMM YYYY\"))) {\n ticketStats.chartData[\n last3Months.indexOf(moment(ticket.created_at).format(\"MMM YYYY\"))\n ].y += 1;\n }\n});\n\nreturn ticketStats;", + "hasParamSupport": true, + "parameters": [] + }, + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "createdAt": "2023-09-01T05:23:02.355Z", + "updatedAt": "2023-09-08T07:02:37.237Z" + }, + { + "id": "e06d4b30-ab28-4ef7-89cc-3266b3811666", + "name": "sendTicketResponseEmail", + "options": { + "content_type": { + "value": "plain_text" + }, + "transformationLanguage": "javascript", + "enableTransformation": false, + "from": "support@brand.com", + "from_name": "B R A N D", + "to": "{{queries.tooljetdbGetTicketDetails.data.customer_email}}", + "subject": "{{`Update on ticket #${queries.tooljetdbGetTicketDetails.data.id} - B R A N D`}}", + "textContent": "", + "htmlContent": "{{components.richtexteditor1.value.replaceAll(/

|<\\/p>|
/g, \"\").replaceAll('\\n', '
')}}", + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "{{`Mail sent to ${queries.tooljetdbGetTicketDetails.data.customer_email} successfully.`}}", + "alertType": "success" + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "{{`Failed to send mail to ${queries.tooljetdbGetTicketDetails.data.customer_email}! Please check and try again`}}", + "alertType": "warning" + } + ] + }, + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "createdAt": "2023-09-01T08:33:59.596Z", + "updatedAt": "2023-09-13T14:14:34.530Z" + }, + { + "id": "c89ea0b0-4ab0-419f-a82c-b7b018bfc9e3", + "name": "tooljetdbGetAllContacts", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "support_desk_all_contacts", + "list_rows": { + "order_filters": { + "8": { + "column": "id", + "order": "desc", + "id": "8" + } + } + }, + "table_id": "30039c8a-48e4-40b3-abde-7d5bb2807ac1" + }, + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "createdAt": "2023-09-01T10:06:40.829Z", + "updatedAt": "2023-09-13T05:11:25.730Z" + }, + { + "id": "26d50560-a367-462a-9b8c-aa66dc32a806", + "name": "sendTicketAssigneeEmail", + "options": { + "content_type": { + "value": "plain_text" + }, + "transformationLanguage": "javascript", + "enableTransformation": false, + "from": "support@brand.com", + "from_name": "{{`${globals.currentUser.firstName} ${globals.currentUser.lastName} from B R A N D`}}", + "to": "{{components.textinput1.value}}", + "subject": "{{queries.tooljetdbGetTicketDetails.data.assigned_to != components.textinput1.value ? `New Ticket #${queries.tooljetdbGetTicketDetails.data.id} assigned - B R A N D` : `Ticket #${queries.tooljetdbGetTicketDetails.data.id} updated - B R A N D`}}", + "htmlContent": "

Hi
\n{{queries.tooljetdbGetTicketDetails.data.assigned_to != components.textinput1.value ? `A new ticket has been assigned to you.` : `A ticket assigned to you has been updated.`}}

\n

Ticket Details:
\nID: #{{queries.tooljetdbGetTicketDetails.data.id}}
\nStatus: {{components.dropdown1.selectedOptionLabel}}
\nPriority: {{components.dropdown2.selectedOptionLabel}}
\nProduct version: {{queries.tooljetdbGetTicketDetails.data.product_version}}
\nIssue type: {{queries.tooljetdbGetTicketDetails.data.issue_type}}
\nDescription: {{queries.tooljetdbGetTicketDetails.data.description}}

\n

Thanks and regards
\nB R A N D

" + }, + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "createdAt": "2023-09-08T05:55:43.043Z", + "updatedAt": "2023-10-10T07:12:28.085Z" + }, + { + "id": "c9a498c4-8e43-4a60-a9a7-b312ecbad39e", + "name": "tooljetdbAddContact", + "options": { + "operation": "create_row", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "support_desk_all_contacts", + "list_rows": {}, + "create_row": { + "0": { + "column": "name", + "value": "{{components.textinput1.value}}" + }, + "1": { + "column": "email", + "value": "{{components.textinput2.value}}" + }, + "2": { + "column": "title", + "value": "{{components.textinput3.value}}" + }, + "3": { + "column": "organization", + "value": "{{components.textinput4.value}}" + }, + "4": { + "column": "country", + "value": "{{components.textinput5.value}}" + }, + "5": { + "column": "language", + "value": "{{components.dropdown1.value}}" + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Contact added successfully.", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "c89ea0b0-4ab0-419f-a82c-b7b018bfc9e3", + "queryName": "tooljetdbGetAllContacts", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to add contact! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "30039c8a-48e4-40b3-abde-7d5bb2807ac1" + }, + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "createdAt": "2023-09-08T09:20:26.056Z", + "updatedAt": "2023-09-13T05:11:25.742Z" + }, + { + "id": "5cc1664d-c88d-4274-beef-b6ea028bfb6a", + "name": "s3GetImage", + "options": { + "maxKeys": 1000, + "transformationLanguage": "javascript", + "enableTransformation": false, + "operation": "signed_url_for_get", + "bucket": "datasource-testing", + "key": "{{queries.tooljetdbGetTicketDetails.data.supporting_file_name}}" + }, + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "createdAt": "2023-09-08T09:56:01.744Z", + "updatedAt": "2023-10-10T07:09:14.699Z" + } + ], + "dataSources": [ + { + "id": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "name": "restapidefault", + "kind": "restapi", + "type": "static", + "pluginId": null, + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:30:50.989Z", + "updatedAt": "2023-08-11T05:30:50.989Z" + }, + { + "id": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "name": "runjsdefault", + "kind": "runjs", + "type": "static", + "pluginId": null, + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:30:50.989Z", + "updatedAt": "2023-08-11T05:30:50.989Z" + }, + { + "id": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "name": "tooljetdbdefault", + "kind": "tooljetdb", + "type": "static", + "pluginId": null, + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:30:50.989Z", + "updatedAt": "2023-08-11T05:30:50.989Z" + }, + { + "id": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "name": "runpydefault", + "kind": "runpy", + "type": "static", + "pluginId": null, + "appVersionId": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:30:50.989Z", + "updatedAt": "2023-08-11T05:30:50.989Z" + }, + { + "id": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "name": "Support Desk - Mail", + "kind": "smtp", + "type": "default", + "pluginId": null, + "appVersionId": null, + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "scope": "global", + "createdAt": "2023-09-01T08:32:35.880Z", + "updatedAt": "2023-09-01T09:44:58.902Z" + }, + { + "id": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "name": "AWS S3", + "kind": "s3", + "type": "default", + "pluginId": null, + "appVersionId": null, + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "scope": "global", + "createdAt": "2023-08-24T16:58:39.241Z", + "updatedAt": "2023-08-24T16:58:39.241Z" + } + ], + "appVersions": [ + { + "id": "1f291a35-5331-4fa6-a64a-5499ba98c6c1", + "name": "demo", + "definition": { + "showViewerNavigation": false, + "homePageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436", + "pages": { + "de8cf079-8f08-4a7c-9e2e-2bb4b689a436": { + "components": { + "98fb3c49-91f2-4ef4-813f-19cbfacb1b3c": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 2.9999999999999996, + "height": 950 + } + }, + "withDefaultChildren": false + }, + "48e876d4-7354-4b32-8772-ed35b892cee2": { + "id": "48e876d4-7354-4b32-8772-ed35b892cee2", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 23.595993529569597, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "98fb3c49-91f2-4ef4-813f-19cbfacb1b3c" + }, + "23f00957-210a-4b87-8581-60c626644368": { + "id": "23f00957-210a-4b87-8581-60c626644368", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Open" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 32.558142698678, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "b4b71535-df42-4a93-89b3-97a97478d46b" + }, + "4c59546f-7e3c-4ea4-9252-a971bf975825": { + "id": "4c59546f-7e3c-4ea4-9252-a971bf975825", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "28" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 27.005448066081495, + "width": 19.059604121754052, + "height": 40 + } + }, + "parent": "b4b71535-df42-4a93-89b3-97a97478d46b" + }, + "f79e57c2-c895-4143-aec6-b6bb652ea612": { + "id": "f79e57c2-c895-4143-aec6-b6bb652ea612", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "On hold" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.396794981008757, + "width": 34.4796717418317, + "height": 30 + } + }, + "parent": "c6f5c91c-20e2-44ca-a321-9813cd2d8191" + }, + "6372c60d-3a9a-463e-b4fa-bf223fd3906e": { + "id": "6372c60d-3a9a-463e-b4fa-bf223fd3906e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "3" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 27.005451280395228, + "width": 19.059604121754052, + "height": 40 + } + }, + "parent": "c6f5c91c-20e2-44ca-a321-9813cd2d8191" + }, + "a9a04553-cc17-4d2e-9d94-f6272a9e6e2a": { + "id": "a9a04553-cc17-4d2e-9d94-f6272a9e6e2a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Resolved" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 22.083091655754874, + "width": 23.77294173682577, + "height": 30 + } + }, + "parent": "84971558-d71f-4fb4-8f3f-9af28a895e65" + }, + "b963d44f-1c99-46d9-a569-06e8a3f55d76": { + "id": "b963d44f-1c99-46d9-a569-06e8a3f55d76", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "55" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 27.005448066081495, + "width": 19.059604121754052, + "height": 40 + } + }, + "parent": "84971558-d71f-4fb4-8f3f-9af28a895e65" + }, + "57c9cbb6-3aca-490d-b0a3-e4e73613cb06": { + "id": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06", + "component": { + "properties": { + "tabs": { + "type": "code", + "displayName": "Tabs", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + } + } + }, + "defaultTab": { + "type": "code", + "displayName": "Default tab", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "hideTabs": { + "type": "toggle", + "displayName": "Hide Tabs", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "renderOnlyActiveTab": { + "type": "toggle", + "displayName": "Render only active tab", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onTabSwitch": { + "displayName": "On tab switch" + } + }, + "styles": { + "highlightColor": { + "type": "color", + "displayName": "Highlight Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "tabWidth": { + "type": "select", + "displayName": "Tab width", + "options": [ + { + "name": "Auto", + "value": "auto" + }, + { + "name": "Equally split", + "value": "split" + } + ] + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "highlightColor": { + "value": "#408fccff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "tabWidth": { + "value": "auto" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "tabs": { + "value": "{{[{\"title\":\"Tickets\",\"id\":\"0\"},{\"title\":\"Insights\",\"id\":\"1\"}]}}" + }, + "defaultTab": { + "value": "0" + }, + "hideTabs": { + "value": "{{false}}" + }, + "renderOnlyActiveTab": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "tabs1", + "displayName": "Tabs", + "description": "Tabs component", + "defaultSize": { + "width": 30, + "height": 300 + }, + "defaultChildren": [ + { + "componentName": "Image", + "layout": { + "top": 60, + "left": 37, + "height": 100 + }, + "tab": 0, + "properties": ["source"], + "defaultValue": { + "source": "https://uploads-ssl.webflow.com/6266634263b9179f76b2236e/62666392f32677b5cb2fb84b_logo.svg" + } + }, + { + "componentName": "Text", + "layout": { + "top": 100, + "left": 17, + "height": 50, + "width": 34 + }, + "tab": 1, + "properties": ["text"], + "defaultValue": { + "text": "Open-source low-code framework to build & deploy internal tools within minutes." + } + }, + { + "componentName": "Table", + "layout": { + "top": 0, + "left": 1, + "width": 42, + "height": 250 + }, + "tab": 2 + } + ], + "component": "Tabs", + "actions": [ + { + "handle": "setTab", + "displayName": "Set current tab", + "params": [ + { + "handle": "id", + "displayName": "Id" + } + ] + } + ], + "exposedVariables": { + "currentTab": "" + } + }, + "layouts": { + "desktop": { + "top": 129.99999618530273, + "left": 6.975208964016932, + "width": 40, + "height": 660 + } + } + }, + "568f3ce0-86d1-4a12-be21-5aaadfcb7f45": { + "id": "568f3ce0-86d1-4a12-be21-5aaadfcb7f45", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onRowClicked", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "d7363a0e-cd38-42a9-9fd0-55e48c9a37a3", + "queryParams": [ + [ + "selected_ticket_id", + "{{components.table1.selectedRow.id}}" + ] + ], + "debounce": "" + } + ], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "12" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.tooljetdbGetTickets?.data ?? []}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "id": "87b3ef2d-9467-4c3c-9573-15fb4ccfba97", + "name": "customer_name", + "key": "customer_name", + "columnType": "string", + "autogenerated": true + }, + { + "id": "bea919c1-64b7-4c48-959d-b557f98b4928", + "name": "customer_email", + "key": "customer_email", + "columnType": "string", + "autogenerated": true + }, + { + "id": "c76e4c0b-cd1f-4004-94d2-11c2bcc12823", + "name": "product_version", + "key": "product_version", + "columnType": "string", + "autogenerated": true + }, + { + "id": "5d0521e3-2a93-4273-91ec-a2102361cc56", + "name": "issue_type", + "key": "issue_type", + "columnType": "string", + "autogenerated": true + }, + { + "id": "9ad1b6b4-cdbc-446a-a7de-d92bf509801e", + "name": "status", + "key": "status", + "columnType": "string", + "autogenerated": true + }, + { + "id": "0c5de6cf-8c6f-4bcb-a25f-3d082658a1cb", + "name": "priority", + "key": "priority", + "columnType": "string", + "autogenerated": true + }, + { + "name": "assigned_to", + "id": "05a321eb-b97a-47c9-86e4-7fc59fc39aac" + }, + { + "id": "b7221c74-1949-47af-b709-8ae3d699796b", + "name": "description", + "key": "description", + "columnType": "string", + "autogenerated": true, + "textWrap": "wrap" + }, + { + "id": "8eea6b55-dd70-434b-82f7-c7022a36cb44", + "name": "created_at", + "key": "created_at", + "columnType": "string", + "autogenerated": true + }, + { + "id": "0716e0fb-4a66-4ad1-9a92-53c56619e510", + "name": "updated_at", + "key": "updated_at", + "columnType": "string", + "autogenerated": true + }, + { + "id": "4cee3410-c3a0-4cd2-ba55-93726b35f38d", + "name": "supporting_file_name", + "key": "supporting_file_name", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{true}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 39, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 143, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 370, + "d7ef4587-d597-44fe-a09f-1e8a5afe7ebd": 136, + "80a7c021-1406-495f-98d2-c8b1789748d6": 169, + "e7828dc4-90f6-4a60-aadb-58356278dff9": 142, + "aa56b72c-5246-47a7-800d-b19a7208970a": 105, + "01397da4-b41e-4540-aec5-440e70fd38d5": 337, + "c76e4c0b-cd1f-4004-94d2-11c2bcc12823": 126, + "87b3ef2d-9467-4c3c-9573-15fb4ccfba97": 149, + "5d0521e3-2a93-4273-91ec-a2102361cc56": 127, + "9ad1b6b4-cdbc-446a-a7de-d92bf509801e": 142, + "0c5de6cf-8c6f-4bcb-a25f-3d082658a1cb": 84, + "b7221c74-1949-47af-b709-8ae3d699796b": 509, + "leftActions": 76 + } + }, + "actions": { + "value": [] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "email", + "Issue", + "Issue type", + "assigned_to", + "Assigned to", + "Status" + ] + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 2.3255813953488373, + "width": 40.99862260433195, + "height": 550 + } + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-0" + }, + "054c1d84-5dee-429d-b400-dd5cc9ca1358": { + "id": "054c1d84-5dee-429d-b400-dd5cc9ca1358", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.976742008093624, + "width": 40, + "height": 120 + } + } + }, + "38e4ee86-ca85-461a-be40-9c21f93e23e6": { + "id": "38e4ee86-ca85-461a-be40-9c21f93e23e6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#408fccff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Support Desk Dashboard" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 29.999984741210938, + "left": 2.325582230226699, + "width": 15, + "height": 40 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "633529cd-6bd8-4305-b1d6-438786e5eba0": { + "id": "633529cd-6bd8-4305-b1d6-438786e5eba0", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container4", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 62.79069402368247, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "c8ecaf02-ac42-4ac5-8339-db3cdb718e23": { + "id": "c8ecaf02-ac42-4ac5-8339-db3cdb718e23", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Open" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.9767441860465125, + "width": 34.00000000000001, + "height": 30 + } + }, + "parent": "633529cd-6bd8-4305-b1d6-438786e5eba0" + }, + "bbee3d54-2e13-4965-88be-52ce48f17f98": { + "id": "bbee3d54-2e13-4965-88be-52ce48f17f98", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.openTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text13", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": -0.000001088976443242018, + "width": 41, + "height": 40 + } + }, + "parent": "633529cd-6bd8-4305-b1d6-438786e5eba0" + }, + "21a6a06c-9fb6-4bd5-b751-1d358fe5ab3f": { + "id": "21a6a06c-9fb6-4bd5-b751-1d358fe5ab3f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container5", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 74.41860263741073, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "7da1125c-55c3-4df0-bf38-d25df707aa31": { + "id": "7da1125c-55c3-4df0-bf38-d25df707aa31", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "On hold" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.396824359431653, + "width": 34.4796717418317, + "height": 30 + } + }, + "parent": "21a6a06c-9fb6-4bd5-b751-1d358fe5ab3f" + }, + "7f6628f2-26d2-46c5-bff1-56c8c645a10c": { + "id": "7f6628f2-26d2-46c5-bff1-56c8c645a10c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.onHoldTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0.0000032272666601329547, + "width": 41, + "height": 40 + } + }, + "parent": "21a6a06c-9fb6-4bd5-b751-1d358fe5ab3f" + }, + "c00bb9dd-69bd-419e-ad44-21875907526d": { + "id": "c00bb9dd-69bd-419e-ad44-21875907526d", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container6", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 86.04651162790698, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "e62a5a26-4ed0-4c81-b90e-cdb5800e5ead": { + "id": "e62a5a26-4ed0-4c81-b90e-cdb5800e5ead", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Resolved" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 9.302337471945389, + "width": 33.00000000000001, + "height": 30 + } + }, + "parent": "c00bb9dd-69bd-419e-ad44-21875907526d" + }, + "7e2aa3ca-4f27-4cb7-ab60-b4364c4d70eb": { + "id": "7e2aa3ca-4f27-4cb7-ab60-b4364c4d70eb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.resolvedTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": -0.0000032272666601329547, + "width": 41, + "height": 40 + } + }, + "parent": "c00bb9dd-69bd-419e-ad44-21875907526d" + }, + "61aca46a-063e-4c7a-a73d-acb1986dd6a0": { + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "#36AF8B" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Number of ticket in this month" + }, + "primaryValue": { + "value": "{{queries.getTicketStats.data.thisMonthTickets}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "2.85" + }, + "secondarySignDisplay": { + "value": "positive" + }, + "loadingState": { + "value": "{{false}}" + }, + "hideSecondary": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics1", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-1", + "layouts": { + "desktop": { + "top": 120, + "left": 67.4418643269094, + "width": 11, + "height": 160 + } + }, + "withDefaultChildren": false + }, + "37f09e14-bd7d-4c40-8126-a58fdd87e725": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "25" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "" + }, + "markerColor": { + "value": "#75b5e4ff" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{false}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "jsonDescription": { + "value": "{\n \"data\": [\n {\n \"x\": [\n \"Jan\",\n \"Feb\",\n \"Mar\"\n ],\n \"y\": [\n 100,\n 80,\n 40\n ],\n \"type\": \"bar\"\n }\n ]\n }" + }, + "type": { + "value": "line" + }, + "data": { + "value": "{{queries?.getTicketStats?.data?.chartData ?? []}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart1", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-1", + "layouts": { + "desktop": { + "top": 90, + "left": 6.97673928044782, + "width": 23.97233184729657, + "height": 400 + } + }, + "withDefaultChildren": false + }, + "b3873d57-dc59-41bc-a393-98532266b5cd": { + "id": "b3873d57-dc59-41bc-a393-98532266b5cd", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "#36AF8B" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Number of tickets in this quarter" + }, + "primaryValue": { + "value": "{{queries.getTicketStats.data.thisQuarterTickets}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "2.85" + }, + "secondarySignDisplay": { + "value": "positive" + }, + "loadingState": { + "value": "{{false}}" + }, + "hideSecondary": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics2", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 310, + "left": 67.4418643269094, + "width": 11, + "height": 160 + } + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-1" + }, + "466676ae-e094-46ba-b51f-0ca1042d97b0": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Support tickets this year" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "57c9cbb6-3aca-490d-b0a3-e4e73613cb06-1", + "layouts": { + "desktop": { + "top": 40, + "left": 6.97674250771448, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "e21b0b05-65bc-45c3-806d-7a1a468db96b": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#9b9b9bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Track and manage all your tickets in one place" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358", + "layouts": { + "desktop": { + "top": 70, + "left": 2.325581395348837, + "width": 15, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "2ec7d535-21d2-4ad4-b455-a9aacb72d10a": { + "id": "2ec7d535-21d2-4ad4-b455-a9aacb72d10a", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "8e03c8cc-643f-4adf-995b-12600a976954" + } + ], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconUsers" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 23.255812866661383, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "98fb3c49-91f2-4ef4-813f-19cbfacb1b3c" + }, + "635e6753-dd2b-4094-a94c-ddd4a223847b": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{20}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R
N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "98fb3c49-91f2-4ef4-813f-19cbfacb1b3c", + "layouts": { + "desktop": { + "top": 30, + "left": 0.000006130624711886412, + "width": 40, + "height": 60 + } + }, + "withDefaultChildren": false + }, + "9bd1fea2-ae0a-4acf-8d5b-e541c7a5aa5a": { + "id": "9bd1fea2-ae0a-4acf-8d5b-e541c7a5aa5a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Open" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.9767441860465125, + "width": 34.00000000000001, + "height": 30 + } + }, + "parent": "ec5f4f15-59e6-472b-bdfb-b6be903bb2d6" + }, + "d1f08f35-4f58-4654-b77d-2405df0c9426": { + "id": "d1f08f35-4f58-4654-b77d-2405df0c9426", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "10" + }, + "loadingState": { + "value": "{{queries.getTickets.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text25", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 40 + } + }, + "parent": "ec5f4f15-59e6-472b-bdfb-b6be903bb2d6" + }, + "e2507b65-69f8-487a-b94e-f3521eea3c92": { + "id": "e2507b65-69f8-487a-b94e-f3521eea3c92", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "On hold" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.396824359431653, + "width": 34.4796717418317, + "height": 30 + } + }, + "parent": "3fa65aac-08d8-4811-9613-9fbe740ce5dc" + }, + "5d28d2a6-77c4-4cea-99fd-e6ac6f531921": { + "id": "5d28d2a6-77c4-4cea-99fd-e6ac6f531921", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#f5a623ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "5" + }, + "loadingState": { + "value": "{{queries.getTickets.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": -0.000006093314777189107, + "width": 41, + "height": 40 + } + }, + "parent": "3fa65aac-08d8-4811-9613-9fbe740ce5dc" + }, + "1b057c19-bd16-4049-978e-edd03b23b3a4": { + "id": "1b057c19-bd16-4049-978e-edd03b23b3a4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Resolved" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 9.302337471945389, + "width": 33.00000000000001, + "height": 30 + } + }, + "parent": "b4d47e2f-aff3-43ba-b9fd-20ea62deb25a" + }, + "478fddd1-ad38-458d-88bb-fef5210ec854": { + "id": "478fddd1-ad38-458d-88bb-fef5210ec854", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#77c91eff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "8" + }, + "loadingState": { + "value": "{{queries.getTickets.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 40 + } + }, + "parent": "b4d47e2f-aff3-43ba-b9fd-20ea62deb25a" + }, + "7371587c-c42a-4f9f-b5db-0ec08a9c2e18": { + "id": "7371587c-c42a-4f9f-b5db-0ec08a9c2e18", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container7", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 51.162792599606334, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "5f1d48f1-f340-4721-a4ac-0aac8bb9d0f2": { + "id": "5f1d48f1-f340-4721-a4ac-0aac8bb9d0f2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#4a90e2ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "In progress" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text23", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.976716444934936, + "width": 34.00000000000001, + "height": 30 + } + }, + "parent": "7371587c-c42a-4f9f-b5db-0ec08a9c2e18" + }, + "b3832b02-4a58-4df6-9e3b-801b4a2dd165": { + "id": "b3832b02-4a58-4df6-9e3b-801b4a2dd165", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#4a90e2ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.inProgressTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": -0.000001088976443242018, + "width": 41, + "height": 40 + } + }, + "parent": "7371587c-c42a-4f9f-b5db-0ec08a9c2e18" + }, + "1773fa69-3597-4662-b152-a12f78d8f1ce": { + "id": "1773fa69-3597-4662-b152-a12f78d8f1ce", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container8", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 39.534873656766905, + "width": 4, + "height": 90 + } + }, + "parent": "054c1d84-5dee-429d-b400-dd5cc9ca1358" + }, + "0142dbea-99ba-49d1-967e-873124642ffe": { + "id": "0142dbea-99ba-49d1-967e-873124642ffe", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#4a90e2ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Generated" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.976745275022956, + "width": 34.00000000000001, + "height": 30 + } + }, + "parent": "1773fa69-3597-4662-b152-a12f78d8f1ce" + }, + "10dbb65f-37db-4553-936d-5bc91add178d": { + "id": "10dbb65f-37db-4553-936d-5bc91add178d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#4a90e2ff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries.getTicketStats.data.generatedTickets}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTickets.isLoading || queries.getTicketStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text32", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0.000017676948260714198, + "width": 41, + "height": 40 + } + }, + "parent": "1773fa69-3597-4662-b152-a12f78d8f1ce" + } + }, + "handle": "home", + "name": "Dashboard", + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "9a4a6f22-a06e-4b58-bf33-fec1f98afd21", + "queryName": "tooljetdbGetTickets", + "parameters": {} + } + ] + }, + "d7363a0e-cd38-42a9-9fd0-55e48c9a37a3": { + "name": "ticket_details", + "handle": "ticket-details", + "components": { + "cc45bdd7-624d-474f-8c41-687c16571018": { + "id": "cc45bdd7-624d-474f-8c41-687c16571018", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#F8F9FA", + "fxActive": false + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 6.976739120830055, + "width": 40, + "height": 120 + } + } + }, + "b661ce6b-22d4-48c4-8d09-fc8d2169f06a": { + "id": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.tooljetdbUpdateTicketDetails.isLoading || queries.sendTicketAssigneeEmail.isLoading || queries.sendTicketResponseEmail.isLoading}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "fxActive": true, + "value": "{{queries.tooljetdbGetTicketDetails.isLoading}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 130, + "left": 11.627906976744187, + "width": 36, + "height": 880 + } + } + }, + "b1ec33bf-eae1-4f3d-a531-bdf7e6c0f88d": { + "id": "b1ec33bf-eae1-4f3d-a531-bdf7e6c0f88d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344D", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 39.598503374221394, + "width": 10, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "780f0ad1-4ee2-45ce-81db-93dd6f6d105e": { + "id": "780f0ad1-4ee2-45ce-81db-93dd6f6d105e", + "component": { + "properties": { + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "defaultValue": { + "type": "code", + "displayName": "Default Value", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "placeholder": { + "value": "Enter response here..." + }, + "defaultValue": { + "value": "Hi {{queries.tooljetdbGetTicketDetails.data.customer_name}}\nThanks for contacting us.\nWe're working on ticket #{{queries.tooljetdbGetTicketDetails.data.id}}, and will let you know once we have an update.\n\nThanks and regards\nB R A N D" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "richtexteditor1", + "displayName": "Text Editor", + "description": "Rich text editor", + "component": "RichTextEditor", + "defaultSize": { + "width": 16, + "height": 210 + }, + "exposedVariables": { + "value": "" + } + }, + "layouts": { + "desktop": { + "top": 540, + "left": 2.32558002220012, + "width": 40.99999999999999, + "height": 250 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "32ff15d9-4367-450b-b5b9-eea67c508b5e": { + "id": "32ff15d9-4367-450b-b5b9-eea67c508b5e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "e06d4b30-ab28-4ef7-89cc-3266b3811666", + "queryName": "sendTicketResponseEmail", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{queries.tooljetdbGetTicketDetails.isLoading}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Send" + }, + "loadingState": { + "value": "{{queries.sendTicketResponseEmail.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 810, + "left": 88.37208985812151, + "width": 4.023585347575455, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "da0b82a8-e130-43c6-8c24-6052d6f61c1b": { + "id": "da0b82a8-e130-43c6-8c24-6052d6f61c1b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#000000ff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#b8b3b3ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 810, + "left": 76.74418386537887, + "width": 4.0323608178581205, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "45416466-17cd-4472-afc0-dea889574572": { + "id": "45416466-17cd-4472-afc0-dea889574572", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{0}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{queries?.tooljetdbGetTicketDetails?.data?.description ?? \"\"}}" + }, + "placeholder": { + "value": "Placeholder text" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "Issuetext", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 39.53488372093023, + "width": 24.999999999999996, + "height": 260 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "e5990225-15ba-4c78-8335-343843c09a11": { + "id": "e5990225-15ba-4c78-8335-343843c09a11", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344D", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Response" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 500, + "left": 2.3256015885875776, + "width": 7, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "e2243986-293f-4c15-b25c-42d4ac19a7ea": { + "id": "e2243986-293f-4c15-b25c-42d4ac19a7ea", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#00000099" + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.tooljetdbGetTicketDetails?.data?.customer_name ?? \"\"}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 25.58139534883721, + "width": 19.999999999999996, + "height": 30 + } + }, + "parent": "cc45bdd7-624d-474f-8c41-687c16571018" + }, + "7d6c2e4e-def0-43e9-a17e-28739538e2b1": { + "id": "7d6c2e4e-def0-43e9-a17e-28739538e2b1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#00000099" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.tooljetdbGetTicketDetails?.data?.customer_email ?? \"\"}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 25.58139534883721, + "width": 19.999999999999996, + "height": 30 + } + }, + "parent": "cc45bdd7-624d-474f-8c41-687c16571018" + }, + "fecb2f87-75d9-405d-bbe4-695ee5d772c7": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container6", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "parent": "cc45bdd7-624d-474f-8c41-687c16571018", + "layouts": { + "desktop": { + "top": 20, + "left": 6.9767440744207105, + "width": 7, + "height": 70 + } + }, + "withDefaultChildren": false + }, + "0aabf007-3c01-4445-bb10-da0a0df61c32": { + "id": "0aabf007-3c01-4445-bb10-da0a0df61c32", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "#{{queries.tooljetdbGetTicketDetails.data.id}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTicketDetails.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 4.651162790697674, + "width": 36.99999999999999, + "height": 40 + } + }, + "parent": "fecb2f87-75d9-405d-bbe4-695ee5d772c7" + }, + "53eaf113-fbe1-4223-8e5d-fc5715eed719": { + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436" + } + ], + "styles": { + "iconColor": { + "value": "#12344dff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconArrowLeft" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon3", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "cc45bdd7-624d-474f-8c41-687c16571018", + "layouts": { + "desktop": { + "top": 40, + "left": 0.23445098215632268, + "width": 1.9911509053210048, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "58b683e4-a81f-4395-8c3e-5922214694f3": { + "id": "58b683e4-a81f-4395-8c3e-5922214694f3", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container7", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 2.9999999999999996, + "height": 1180 + } + } + }, + "e2a8b30f-80cb-426b-b9ca-da8c32d3948b": { + "id": "e2a8b30f-80cb-426b-b9ca-da8c32d3948b", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436" + } + ], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 23.595999971330436, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "58b683e4-a81f-4395-8c3e-5922214694f3" + }, + "e34139e2-25f6-48d0-9a18-0f06d0e28d6d": { + "id": "e34139e2-25f6-48d0-9a18-0f06d0e28d6d", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "8e03c8cc-643f-4adf-995b-12600a976954" + } + ], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconUsers" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon4", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 23.255813955637826, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "58b683e4-a81f-4395-8c3e-5922214694f3" + }, + "55b18389-2696-4cb9-8c74-7f98d86e796b": { + "id": "55b18389-2696-4cb9-8c74-7f98d86e796b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{20}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R
N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0.000006130624711886412, + "width": 40, + "height": 60 + } + }, + "parent": "58b683e4-a81f-4395-8c3e-5922214694f3" + }, + "ed68d354-065c-43c1-ab6b-328abfcffbb2": { + "id": "ed68d354-065c-43c1-ab6b-328abfcffbb2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344D", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Ticket details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 2.3255786342065443, + "width": 10, + "height": 30 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "a9ea77d7-e754-41f3-92b5-b8ccdb71adf5": { + "id": "a9ea77d7-e754-41f3-92b5-b8ccdb71adf5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 2.3255819827807978, + "width": 3.9892582010199282, + "height": 30 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "9ad62358-df32-4ddb-a0b2-26c3db74ac98": { + "id": "9ad62358-df32-4ddb-a0b2-26c3db74ac98", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}", + "fxActive": false + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{queries.tooljetdbGetTicketDetails.data.status}}" + }, + "values": { + "value": "{{[\"ticket_generated\", \"open\", \"in_progress\", \"on_hold\", \"resolved\"]}}" + }, + "display_values": { + "value": "{{[\"Ticket generated\", \"Open\", \"In progress\", \"On hold\", \"Resolved\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}", + "fxActive": false + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 2.3255819827807978, + "width": 9, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "c7c2df1b-6f3f-43db-9cc9-b101b9c0e9db": { + "id": "c7c2df1b-6f3f-43db-9cc9-b101b9c0e9db", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Priority" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 25.581395928846742, + "width": 3.9892582010199282, + "height": 30 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "991d588a-d4ed-43b2-8e4d-0f9bae3c5b94": { + "id": "991d588a-d4ed-43b2-8e4d-0f9bae3c5b94", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}", + "fxActive": false + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{queries.tooljetdbGetTicketDetails.data.priority}}" + }, + "values": { + "value": "{{[\"p0\", \"p1\", \"p2\", \"p3\", \"p4\"]}}" + }, + "display_values": { + "value": "{{[\"P0 - Blocker\", \"P1 - Critical\", \"P2 - Important\", \"P3 - Minor\", \"P4 - Not important\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}", + "fxActive": false + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 25.58139788942742, + "width": 9, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "b9a08e79-54eb-4902-904d-b06ffb305932": { + "id": "b9a08e79-54eb-4902-904d-b06ffb305932", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Assigned to" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 48.83720791433201, + "width": 8, + "height": 30 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "6e7283ba-4172-4b1d-88c6-d7d34da7b291": { + "id": "6e7283ba-4172-4b1d-88c6-d7d34da7b291", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}", + "fxActive": false + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput1.value) || components.textinput1.value == \"\" ? true : \"Invalid email format\"}}" + } + }, + "properties": { + "value": { + "value": "{{queries?.tooljetdbGetTicketDetails?.data?.assigned_to ?? \"\"}}" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 48.83720863023707, + "width": 17, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "20b0adee-a9ae-480a-a8a3-0837aa7feff4": { + "id": "20b0adee-a9ae-480a-a8a3-0837aa7feff4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "59a73d75-880c-42cd-9c03-5aadc2264f2d", + "queryName": "tooljetdbUpdateTicketDetails", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{components.dropdown1.value == undefined || components.dropdown2.value == undefined || !components.textinput1.isValid || (components.textinput1.value == queries.tooljetdbGetTicketDetails.data.assigned_to && components.dropdown1.value == queries.tooljetdbGetTicketDetails.data.status && components.dropdown2.value == queries.tooljetdbGetTicketDetails.data.priority)}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Save" + }, + "loadingState": { + "value": "{{queries.tooljetdbUpdateTicketDetails.isLoading || queries.sendTicketAssigneeEmail.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button5", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 90.69766595916028, + "width": 2.9999999999999996, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + }, + "c05c191a-c531-45c0-9eb7-f4e368b887a4": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#88888880" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a", + "layouts": { + "desktop": { + "top": 150, + "left": 2.3255819827807978, + "width": 40.99999999999999, + "height": 10 + } + }, + "withDefaultChildren": false + }, + "78b17afa-aa2d-479c-b3e1-509b5c77b9b6": { + "component": { + "properties": { + "source": { + "type": "code", + "displayName": "URL", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "alternativeText": { + "type": "code", + "displayName": "Alternative text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "zoomButtons": { + "type": "toggle", + "displayName": "Zoom button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "rotateButton": { + "type": "toggle", + "displayName": "Rotate button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + } + }, + "styles": { + "borderType": { + "type": "select", + "displayName": "Border type", + "options": [ + { + "name": "None", + "value": "none" + }, + { + "name": "Rounded", + "value": "rounded" + }, + { + "name": "Circle", + "value": "rounded-circle" + }, + { + "name": "Thumbnail", + "value": "img-thumbnail" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "imageFit": { + "type": "select", + "displayName": "Image fit", + "options": [ + { + "name": "fill", + "value": "fill" + }, + { + "name": "contain", + "value": "contain" + }, + { + "name": "cover", + "value": "cover" + }, + { + "name": "scale-down", + "value": "scale-down" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderType": { + "value": "none" + }, + "padding": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{(queries?.tooljetdbGetTicketDetails?.data?.supporting_file_name ?? \"\") == \"\"}}", + "fxActive": true + }, + "imageFit": { + "value": "contain" + }, + "backgroundColor": { + "value": "#8888881a" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "source": { + "value": "{{queries.tooljetdbGetTicketDetails.data.supporting_file_name == \"\" ? \"\" : queries.s3GetImage.data.url}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetTicketDetails.isLoading || queries.s3GetImage.isLoading}}", + "fxActive": true + }, + "alternativeText": { + "value": "No image uploaded for this ticket." + }, + "zoomButtons": { + "value": "{{(queries?.tooljetdbGetTicketDetails?.data?.supporting_file_name ?? \"\") != \"\"}}", + "fxActive": true + }, + "rotateButton": { + "value": "{{(queries?.tooljetdbGetTicketDetails?.data?.supporting_file_name ?? \"\") != \"\"}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "image1", + "displayName": "Image", + "description": "Display an Image", + "defaultSize": { + "width": 3, + "height": 100 + }, + "component": "Image", + "exposedVariables": {} + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a", + "layouts": { + "desktop": { + "top": 220, + "left": 2.325576101038764, + "width": 15.000000000000002, + "height": 260 + } + }, + "withDefaultChildren": false + }, + "ba259812-1a03-4d6f-b19c-e58963f498e4": { + "id": "ba259812-1a03-4d6f-b19c-e58963f498e4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344D", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Uploaded image" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text13", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 2.325582570212763, + "width": 10, + "height": 40 + } + }, + "parent": "b661ce6b-22d4-48c4-8d09-fc8d2169f06a" + } + }, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "a2e98309-9352-4836-b64d-dd9c4f7f4822", + "queryName": "tooljetdbGetTicketDetails", + "parameters": {} + } + ] + }, + "8e03c8cc-643f-4adf-995b-12600a976954": { + "name": "all_customers", + "handle": "all-customers", + "components": { + "ceee4b9a-82ce-4cf6-942a-309e63524e44": { + "id": "ceee4b9a-82ce-4cf6-942a-309e63524e44", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#12344dff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "All Contacts" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text1", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 9.302324210708631, + "width": 13, + "height": 50 + } + } + }, + "48c4cf8a-f888-46d1-b10c-e559fe274b66": { + "id": "48c4cf8a-f888-46d1-b10c-e559fe274b66", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#9b9b9bff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{!queries.tooljetdbGetAllContacts.isLoading}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`${(queries?.tooljetdbGetAllContacts?.data ?? []).length} total contacts`}}" + }, + "loadingState": { + "value": "", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text2", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 9.30232558139535, + "width": 9, + "height": 30 + } + } + }, + "2f23505a-a635-4ee5-ae2f-d94f8215133e": { + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetAllContacts.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.tooljetdbGetAllContacts?.data ?? []}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{20}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true + }, + { + "id": "573f181f-9df0-4dbb-9f8e-4a1ce660689a", + "name": "title", + "key": "title", + "columnType": "string", + "autogenerated": true + }, + { + "id": "0b02428a-b586-471f-8e92-269d51d2f353", + "name": "organization", + "key": "organization", + "columnType": "string", + "autogenerated": true + }, + { + "id": "6222c541-6ca9-41de-ba1e-56fcfe484a9a", + "name": "country", + "key": "country", + "columnType": "string", + "autogenerated": true + }, + { + "id": "35c77b67-fbce-479b-b610-9c12daf01848", + "name": "language", + "key": "language", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 44, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 194, + "434f0654-adfd-4978-99ea-6a8c8359e0bc": 146, + "862b7244-f3d3-4bcb-a35a-519adb88118f": 134, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 248, + "a2d24c22-78d8-4b80-b911-c04d68892613": 28, + "573f181f-9df0-4dbb-9f8e-4a1ce660689a": 191, + "6222c541-6ca9-41de-ba1e-56fcfe484a9a": 197, + "35c77b67-fbce-479b-b610-9c12daf01848": 174 + } + }, + "actions": { + "value": [] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "new_column2", + "Tags", + "Timezone", + "Last updated" + ] + }, + "showAddNewRowButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + } + ] + }, + "layouts": { + "desktop": { + "top": 129.99999237060547, + "left": 9.302300670514478, + "width": 38, + "height": 660 + } + }, + "withDefaultChildren": false + }, + "3ccfb4d8-7912-4063-9f90-2d16baeae96d": { + "id": "3ccfb4d8-7912-4063-9f90-2d16baeae96d", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container1", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0.00000762939453125, + "left": 0, + "width": 2.9999999999999996, + "height": 950 + } + } + }, + "a798e257-82cd-4e9b-99e3-5cb2c36fda44": { + "id": "a798e257-82cd-4e9b-99e3-5cb2c36fda44", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "de8cf079-8f08-4a7c-9e2e-2bb4b689a436" + } + ], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 23.59600069407166, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "3ccfb4d8-7912-4063-9f90-2d16baeae96d" + }, + "df28f654-ee9e-462f-a5e8-07d12a63b393": { + "id": "df28f654-ee9e-462f-a5e8-07d12a63b393", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#d1d1d1ff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconUsers" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 23.255806791135765, + "width": 18.298634919772905, + "height": 30 + } + }, + "parent": "3ccfb4d8-7912-4063-9f90-2d16baeae96d" + }, + "251dc6be-a4dc-41c3-8caa-55bf53225a9b": { + "id": "251dc6be-a4dc-41c3-8caa-55bf53225a9b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{20}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R
N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text3", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0.000006130624711886412, + "width": 40, + "height": 60 + } + }, + "parent": "3ccfb4d8-7912-4063-9f90-2d16baeae96d" + }, + "1dab8e54-bcff-47aa-a730-f571faa87a0c": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#000000" + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#12344dff" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add Contact" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add Contact" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "470px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal1", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 100, + "left": 76.74418904445707, + "width": 9, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "8716b72a-5a96-40b3-bdf7-f372ff148fc7": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Contact" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 83.72115914129401, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "af813b96-b45f-4f8f-a676-832bc4289fe4": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text4", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 30, + "left": 6.9767462792955985, + "width": 7, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "e7653385-3303-4381-9fef-5cba26b8462c": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 30, + "left": 23.255813953488374, + "width": 30.000000000000004, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "f5a9c2bd-7ccc-4286-bb69-f24ef4f3a7a0": { + "id": "f5a9c2bd-7ccc-4286-bb69-f24ef4f3a7a0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 6.976742690868592, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "0b3c8af9-066c-4000-9660-854ab827728f": { + "id": "0b3c8af9-066c-4000-9660-854ab827728f", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Title" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 6.976744186046512, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "6d1beea3-5020-43a9-a554-d295f6e786c8": { + "id": "6d1beea3-5020-43a9-a554-d295f6e786c8", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Organization" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 6.976741195690673, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "c5666389-6356-4285-ac42-7f607fb2b1d4": { + "id": "c5666389-6356-4285-ac42-7f607fb2b1d4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Country" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 270, + "left": 6.976742690868592, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "07736ee2-99da-4d47-9311-bd55a663a500": { + "id": "07736ee2-99da-4d47-9311-bd55a663a500", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Language" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 330, + "left": 6.976744186046512, + "width": 7, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "622183b9-d87b-4b12-aa12-5e596191c2c0": { + "id": "622183b9-d87b-4b12-aa12-5e596191c2c0", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput2.value) || components.textinput2.value == \"\" ? true : \"Invalid email format\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 23.255809567633154, + "width": 30.000000000000004, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "c8ca9b1d-1810-4f6e-8af8-779ca6a589e7": { + "id": "c8ca9b1d-1810-4f6e-8af8-779ca6a589e7", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter title" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput3", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 23.255813953488374, + "width": 30.000000000000004, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "806313f7-17d1-4c72-8200-62c29493be86": { + "id": "806313f7-17d1-4c72-8200-62c29493be86", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter organization name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput4", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 23.255813953488374, + "width": 30.000000000000004, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "9abdde34-6893-4032-ad59-f9e402e345b1": { + "id": "9abdde34-6893-4032-ad59-f9e402e345b1", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter country name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput5", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 270, + "left": 23.2558140531669, + "width": 30.000000000000004, + "height": 40 + } + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + }, + "30d4806a-6cf2-4120-b4aa-521a7b4c47ae": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{\"english\"}}" + }, + "values": { + "value": "{{[\"english\", \"hindi\", \"french\", \"arabic\", \"spanish\", \"portuguese\", \"german\", \"russian\", \"malay\", \"italian\"]}}" + }, + "display_values": { + "value": "{{[\"English\", \"Hindi\", \"French\", \"Arabic\", \"Spanish\", \"Portuguese\", \"German\", \"Russian\", \"Malay\", \"Italian\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a language" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 330, + "left": 23.255814450597605, + "width": 30.000000000000004, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ff16e8e2-779d-4f5c-be11-9689236131f8": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "c9a498c4-8e43-4a60-a9a7-b312ecbad39e", + "queryName": "tooljetdbAddContact", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{components.textinput1.value.length == 0 || components.textinput2.value.length == 0 || !components.textinput2.isValid || components.textinput3.value.length == 0 || components.textinput4.value.length == 0 || components.textinput5.value.length == 0 || components.dropdown1.value == undefined}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add contact" + }, + "loadingState": { + "value": "{{queries.tooljetdbAddContact.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 400, + "left": 76.74418973590058, + "width": 7, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "e971eff3-812c-4a03-b7cc-4e15d148bda0": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1dab8e54-bcff-47aa-a730-f571faa87a0c" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#12344dff" + }, + "loaderColor": { + "value": "#12344dff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#12344dff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button3", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1dab8e54-bcff-47aa-a730-f571faa87a0c", + "layouts": { + "desktop": { + "top": 400, + "left": 62.7907008641315, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + } + }, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "c89ea0b0-4ab0-419f-a82c-b7b018bfc9e3", + "queryName": "tooljetdbGetAllContacts", + "parameters": {} + } + ] + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "17000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": "1200", + "canvasBackgroundColor": "", + "backgroundFxQuery": "" + } + }, + "appId": "fc9b77ec-f4cf-4a7d-b36c-ba899c9c97f0", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-08-11T05:30:50.997Z", + "updatedAt": "2023-10-11T07:05:13.559Z" + } + ], + "appEnvironments": [ + { + "id": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "production", + "isDefault": true, + "priority": 3, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "staging", + "isDefault": false, + "priority": 2, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "development", + "isDefault": false, + "priority": 1, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + } + ], + "dataSourceOptions": [ + { + "id": "09bf5c38-8cec-4973-8855-643c5133d87e", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ffbf05e-51d6-4087-a11f-b4d7e431dc83", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8210c7ae-f59e-4bea-b0c5-50c118343441", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "63a0be80-a870-4cc2-ab64-8127efbd108d", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "869450d4-61c3-4d90-b714-4b1881e39518", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd7cbbff-0d68-4493-983d-37b726ebc98c", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3e4c6b07-8e27-4163-a2f2-cbb55942f87b", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "70a7e577-d084-40ce-a5e7-058c86912c66", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "ca37482f-4921-4c56-87dc-6b2eae124de4", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "35c27146-7fc0-4b09-a2ce-0f245bbf714b", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3bfaae26-a193-41be-a6df-6c854851ec90", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a1d06fc-5357-4784-8468-61886137214b", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "4ebed5f4-aa04-4674-88b5-475de6305c15", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9ce12342-7f72-4170-a0c3-a2fa750b08ec", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "08bc41cc-49b7-46f1-a7d8-e491f3b1e687", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e5d9ca99-a662-4dc3-bb06-11d3efc5b0e6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df795abb-982a-4a49-852a-6e049d72b063", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd79676a-f641-4f13-897c-a4487298e956", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "109373cc-a29d-49cf-9c09-b78d9000c797", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "394cd4b9-6678-4666-a3b4-7220fdc9f3fa", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "49a16184-fb7f-4302-8f3a-183203af3e13", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "58c756e7-4ac8-47e5-ad47-dd9f3bd54bd6", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a115c49b-a119-40d0-8db0-f020724207ad", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e138a408-40a3-4a04-8f43-d4d9f77b670d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a980201d-0197-41af-8b44-5b9a777d08db", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b92d7e20-aef7-408c-a5fd-cfb1afe3802f", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "427cc0a3-b736-4552-a043-849312f72535", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "fd4bc72c-00f5-42d5-9fe6-758b3c4e05a1", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df6525aa-cba3-40aa-92be-d908007f1d47", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "064644df-c753-4c38-a368-08760a852289", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ed34011-fb0c-4df6-9ac3-c0722e5afc15", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "603ecf7a-24ca-4102-a3a2-9adf3540d47f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4254e048-0e9c-4173-ac9b-6448fdfe0272", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "81c95c9d-4d5c-4509-bcc0-9b6db463646a", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "a4fec9af-15b8-4288-a3dc-c6797f050b2c", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "72371933-729a-4e35-9915-950ed7d1a6da", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "dc16dddb-6eb9-4a56-8b83-c7821c1be3e4", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a59db8a-b46b-4411-ba16-c6e9614fde09", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "6fc0a89f-6fe0-48ed-b085-f1ba06c15b00", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9c069f5a-1e8c-432e-ac34-4bd3102d8c84", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e950b029-4156-4afe-8a18-e7927aafc191", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "ca1f9156-a727-4e4d-b609-396d9ad65b7a", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "100298a0-928d-4589-a70f-34a0926a28a1", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "aba37959-1599-4a70-ae4c-7b05ffa2a800", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3eb4f10b-d70f-457b-a6d6-1facf33bb388", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "649ebc41-1207-4383-ac37-affebaf46025", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "2b64c284-3043-4011-b501-7438f977e8d6", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "66234021-3d1e-4314-aa85-233e15c788c4", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b3ca510b-fd4d-48b1-a204-39905d3553d6", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0af3f0c9-bf1e-4b60-8868-25dcaa5c509c", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "42d8efc3-5c1a-4085-a259-b38e0a5c2df5", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "7e49e5a8-08d7-4a02-897c-13d235ab00f9", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f7cf3288-f755-40db-ac07-c6f0832b7c6b", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "cd9235bc-aec9-4da1-b22c-e7da50f3cde6", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "5a13235b-390e-4888-bbca-4c0e7e85b811", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e096bd24-e396-4893-88dd-2872176057a2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "69f40c97-1d4e-4f87-9a98-7f0a12a3238b", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f9d33ef5-bf7d-4c52-a919-64cd39b5a9c5", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a011c5e5-60bd-44d4-a057-b5aa23b75aee", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "bb811868-ea85-4b54-8a13-e999971eeb9d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "24db297d-9213-4102-a253-26a34565ee73", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "73e98e30-9fd0-4ee2-b001-a91cc6fa8396", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4bb78281-112c-411c-9fc1-fe6b8c4ef0c9", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "4edc07e1-819c-433d-9545-7156e0813abf", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "7eb5fab2-76bb-4457-b049-d2fc338cd143", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a729b4d1-1520-4a4f-92d9-5b4d39e609a7", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0c980db9-a929-481a-be6a-b71ea5ad2107", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "7f703daa-1e72-4a75-bc70-884816577a05", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a1043e60-e673-4041-a64f-e26e4609cdbf", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b5192850-7615-4e13-b1ae-93b956f5be03", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e8040071-0a1a-4e11-a04f-7cbc179d5868", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "ef525392-c7cb-431d-8525-afd52f2a0131", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd459a47-9e32-448b-a362-a957ed61a744", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "ea086241-7ebf-42b3-a9e0-98e7f9615fde", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.259Z", + "updatedAt": "2023-02-07T08:20:48.259Z" + }, + { + "id": "2f3691b6-4dc5-49db-be70-2646b0b37b3e", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "88454045-b2a0-4f59-baf5-0f32a0f5000c", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.268Z", + "updatedAt": "2023-02-07T08:20:48.268Z" + }, + { + "id": "0a14939a-e6e2-4156-833d-692fa2374241", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "0d46628b-d8e9-4463-b4d1-bf254a825ffd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.273Z", + "updatedAt": "2023-02-07T08:20:48.273Z" + }, + { + "id": "fcd55e6a-7b48-4541-b86b-8fc5d661ff08", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.283Z", + "updatedAt": "2023-02-07T08:20:48.283Z" + }, + { + "id": "3e6b2492-3d73-4792-b447-3bd27a74d424", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.287Z", + "updatedAt": "2023-02-07T08:20:48.287Z" + }, + { + "id": "506a0e32-25c0-4a19-a6f7-9d04c339d28b", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.289Z", + "updatedAt": "2023-02-07T08:20:48.289Z" + }, + { + "id": "6b19a6ab-7756-4386-9592-6ab4d5fa98d1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.295Z", + "updatedAt": "2023-02-07T08:20:48.295Z" + }, + { + "id": "af5be5e6-666d-4437-a75c-a10830980dbe", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.297Z", + "updatedAt": "2023-02-07T08:20:48.297Z" + }, + { + "id": "983162ea-8848-4388-b88c-971523d0cbb1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.299Z", + "updatedAt": "2023-02-07T08:20:48.299Z" + }, + { + "id": "a308e389-9497-4f1b-9564-5424a0a0b7b1", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.348Z", + "updatedAt": "2023-02-07T08:20:48.348Z" + }, + { + "id": "18d6b459-7d7d-4ba0-9ee7-c581844e0d45", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.351Z", + "updatedAt": "2023-02-07T08:20:48.351Z" + }, + { + "id": "478e9b22-6f4d-45fa-b50f-77b45a616669", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.353Z", + "updatedAt": "2023-02-07T08:20:48.353Z" + }, + { + "id": "bd491146-3009-418f-a4d6-5e976d966a01", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.356Z", + "updatedAt": "2023-02-07T08:20:48.356Z" + }, + { + "id": "9383e443-5c0f-4fe9-ac9a-273971edd22b", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.357Z", + "updatedAt": "2023-02-07T08:20:48.357Z" + }, + { + "id": "764bce5d-3227-4681-806f-50051e97a6f1", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.359Z", + "updatedAt": "2023-02-07T08:20:48.359Z" + }, + { + "id": "2f79cbc9-4ecc-4a2a-8f14-624961660a51", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "2f701e52-7cfe-49a8-bb40-956ed45342d1", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.858Z", + "updatedAt": "2023-02-07T10:13:59.858Z" + }, + { + "id": "ce715761-73f2-46b1-95f2-124d2b098a77", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "da58d6d5-09e3-4d72-a3cb-48277e4d5379", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.863Z", + "updatedAt": "2023-02-07T10:13:59.863Z" + }, + { + "id": "116031c1-ee38-483d-9625-b13548d97459", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "999deb1f-6190-4508-8607-2b57a9acf977", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.867Z", + "updatedAt": "2023-02-07T10:13:59.867Z" + }, + { + "id": "9659e653-8eca-4ed1-9cfa-c27c3080bc61", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9fe7b96b-8899-40ae-bfb2-f2c56c89389e", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.834Z" + }, + { + "id": "9da2713d-98d6-4388-a5e7-42cb22d2a0f9", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "d5b29186-21d7-45e3-a40c-7d3a4a6306e2", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.762Z" + }, + { + "id": "4ba4ad64-bdac-45e2-a112-da4bb720e654", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "f20d22f2-75db-4ff7-94d1-3667878c031b", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.842Z" + }, + { + "id": "1c193e6d-f21a-4945-a1a3-0271900258ef", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1852e614-7f87-4e16-8d35-ae924ce2193b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.450Z", + "updatedAt": "2023-07-07T10:07:23.333Z" + }, + { + "id": "f9ff54d6-55af-4428-ad9a-75343cd2cd36", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e3baf697-ea3e-4f03-be01-db6d0344f635", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.698Z" + }, + { + "id": "7c172ef0-eabb-4ce1-9fef-7534e4804218", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b159f378-74b0-44cb-9b04-ea4a1c02bd09", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.706Z" + }, + { + "id": "91112338-8edc-437e-a066-eb7445b8c9f0", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "c85938e4-7be9-46c6-b37f-045435dc17e7", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "a754d3d0-ff68-47b0-ad58-073862e0e78a", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "57204c96-1590-49d0-ae82-85d6096b4f3f", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.753Z", + "updatedAt": "2023-07-21T15:39:41.753Z" + }, + { + "id": "5d8aeece-e171-4f98-a17a-dafcf094eefc", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.754Z", + "updatedAt": "2023-07-21T15:39:41.754Z" + }, + { + "id": "37f7e000-2b47-429f-b7e4-9e024479d9b8", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.756Z", + "updatedAt": "2023-07-21T15:39:41.756Z" + }, + { + "id": "fb85fb2c-9aed-4dda-b167-d9b95bd8695f", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.762Z", + "updatedAt": "2023-07-21T15:39:41.762Z" + }, + { + "id": "57bc1c57-3a79-4f8c-8f82-743783098320", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.764Z", + "updatedAt": "2023-07-21T15:39:41.764Z" + }, + { + "id": "e3df8c1e-e689-460e-a1c0-a6ac34e2c6fb", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.765Z", + "updatedAt": "2023-07-21T15:39:41.765Z" + }, + { + "id": "ddb73901-f6b8-4e98-a98e-d20764e981d5", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.770Z", + "updatedAt": "2023-07-21T15:39:41.770Z" + }, + { + "id": "64ded0f0-a523-46e0-8de4-1233af798e69", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.773Z", + "updatedAt": "2023-07-21T15:39:41.773Z" + }, + { + "id": "563951c4-3c25-4c16-85bd-bf35c67c541d", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.774Z", + "updatedAt": "2023-07-21T15:39:41.774Z" + }, + { + "id": "7054580b-dcf1-42db-8599-b295874586e4", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "apiKey": { + "credential_id": "309cd1c4-4241-4757-9216-7c1d5052a6f2", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.508Z" + }, + { + "id": "69646d74-947f-4ac7-9560-b58fce035d3c", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "apiKey": { + "credential_id": "02ea1d76-bf4e-40b5-a57a-ad02467754d7", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.489Z" + }, + { + "id": "35da5f37-e660-4711-8b89-3ed348857e88", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "apiKey": { + "credential_id": "61601401-8d9b-47d8-81cc-fcb0ab9df125", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.509Z" + }, + { + "id": "607909a2-1d4d-4bab-8468-1f0f8351ab14", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.735Z", + "updatedAt": "2023-08-11T05:25:31.735Z" + }, + { + "id": "9423866f-d475-42c3-b2a7-c63be6ed9abb", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.739Z", + "updatedAt": "2023-08-11T05:25:31.739Z" + }, + { + "id": "90a1596f-5d45-4ad4-a376-3b555f4773bd", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.741Z", + "updatedAt": "2023-08-11T05:25:31.741Z" + }, + { + "id": "a41de1f3-3486-4f59-a964-fd99a077d61b", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.747Z", + "updatedAt": "2023-08-11T05:25:31.747Z" + }, + { + "id": "5b452053-b728-48ea-969f-35ee44bd449e", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.750Z", + "updatedAt": "2023-08-11T05:25:31.750Z" + }, + { + "id": "b4e5d146-7682-44c6-b009-9a59a3a144bb", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.752Z", + "updatedAt": "2023-08-11T05:25:31.752Z" + }, + { + "id": "d01715d9-1ffb-405e-b5e3-b9d786697627", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.761Z", + "updatedAt": "2023-08-11T05:25:31.761Z" + }, + { + "id": "fff3b76b-14f9-49c2-9520-ccff9f3b0239", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.764Z", + "updatedAt": "2023-08-11T05:25:31.764Z" + }, + { + "id": "c1136230-787e-4985-afa3-ec88e383b3c1", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.766Z", + "updatedAt": "2023-08-11T05:25:31.766Z" + }, + { + "id": "6e14d7b5-99db-4f14-84e4-8fa34ca096da", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.772Z", + "updatedAt": "2023-08-11T05:25:31.772Z" + }, + { + "id": "a0bed57b-7aae-4a5a-b154-49cdd9e508cb", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.775Z", + "updatedAt": "2023-08-11T05:25:31.775Z" + }, + { + "id": "13272f64-55dc-4fd9-a692-9dc9afe40b97", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.780Z", + "updatedAt": "2023-08-11T05:25:31.780Z" + }, + { + "id": "abbd66ec-c0a2-4893-8bd1-a90100ec7963", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.785Z", + "updatedAt": "2023-08-11T05:25:31.785Z" + }, + { + "id": "563d611b-ed1e-46a1-bad7-f1ffd91cffef", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connection_limit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf05673058", + "encrypted": false + }, + "password": { + "value": "08BcGsD9))xK7rpLAKDw8QK", + "encrypted": false + }, + "host": { + "value": "dbpwf05673058.sysp0000.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "supplychain", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.788Z", + "updatedAt": "2023-08-11T05:25:31.788Z" + }, + { + "id": "eb8f5145-06ae-4ee6-bd79-26bbacf672d7", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.791Z", + "updatedAt": "2023-08-11T05:25:31.791Z" + }, + { + "id": "d8dbbb97-667b-42cf-8e1d-c3920b91ae0a", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "aa622b9c-27c6-45c6-8ec7-471e4a346a7c", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "34b17572-60b1-4895-bd93-5c85ba03b319", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "3d4a1b27-f9bd-47ae-aaaa-d1564e91456a", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.804Z", + "updatedAt": "2023-08-11T05:27:56.804Z" + }, + { + "id": "525b25cb-90b1-4d2c-80cf-b4fc2b3e4fee", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.807Z", + "updatedAt": "2023-08-11T05:27:56.807Z" + }, + { + "id": "4a853db8-3f1d-4cf2-93c2-ce3e28266b36", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.809Z", + "updatedAt": "2023-08-11T05:27:56.809Z" + }, + { + "id": "846b03f8-f6e1-4a79-8ae7-d545c1f4f0b5", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.813Z", + "updatedAt": "2023-08-11T05:27:56.813Z" + }, + { + "id": "4de0613b-4f14-40c9-aeac-7d027ff73833", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.815Z", + "updatedAt": "2023-08-11T05:27:56.815Z" + }, + { + "id": "69eb4761-b882-4c51-8e11-e568731bc43e", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.818Z", + "updatedAt": "2023-08-11T05:27:56.818Z" + }, + { + "id": "564f68c5-4980-493f-9699-1ff567482fd0", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.821Z", + "updatedAt": "2023-08-11T05:27:56.821Z" + }, + { + "id": "06d2856d-000f-47d1-a7ff-8e818eb42478", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.824Z", + "updatedAt": "2023-08-11T05:27:56.824Z" + }, + { + "id": "f2579e45-a0bd-423f-b724-9af76d33ea87", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.825Z", + "updatedAt": "2023-08-11T05:27:56.825Z" + }, + { + "id": "773493c0-efdf-465a-bab1-910a8ff9c6c8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "5a426139-fa01-4ea3-b1fe-9794e901503f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.832Z", + "updatedAt": "2023-08-11T05:27:56.832Z" + }, + { + "id": "026abb10-56a6-488b-b36c-f55d613893fc", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "1c465591-2ecf-4a81-945f-8dc32d7d12c5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.838Z", + "updatedAt": "2023-08-11T05:27:56.838Z" + }, + { + "id": "6c3b028c-314a-4534-8660-d412d627cda8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "159a0956-8cfb-4aa6-8a3a-e833042c6a86", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.845Z", + "updatedAt": "2023-08-11T05:27:56.845Z" + }, + { + "id": "67450519-17ee-4c56-a7ea-a0a596d3f139", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.231Z", + "updatedAt": "2023-08-11T05:30:20.231Z" + }, + { + "id": "ebb05718-564b-48dc-be97-fe9042a03a32", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.233Z", + "updatedAt": "2023-08-11T05:30:20.233Z" + }, + { + "id": "906cfd94-81db-408d-8771-ac9dd7475525", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.235Z", + "updatedAt": "2023-08-11T05:30:20.235Z" + }, + { + "id": "8ce3c15e-ce3c-443b-be1b-41de4ba604c5", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.239Z", + "updatedAt": "2023-08-11T05:30:20.239Z" + }, + { + "id": "c09660a0-0d13-4c77-825b-05035e7009d3", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.241Z", + "updatedAt": "2023-08-11T05:30:20.241Z" + }, + { + "id": "81225ea3-efa6-497f-a7a0-c4993eb0ccf4", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.243Z", + "updatedAt": "2023-08-11T05:30:20.243Z" + }, + { + "id": "fe1d2b79-b36f-4b6a-a169-05c7dfc012ae", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.246Z", + "updatedAt": "2023-08-11T05:30:20.246Z" + }, + { + "id": "c006f812-b14d-492f-bbb3-473498b1f0d1", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.249Z", + "updatedAt": "2023-08-11T05:30:20.249Z" + }, + { + "id": "44bb1b06-e6d5-4762-ae62-1ee890f646b3", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.250Z", + "updatedAt": "2023-08-11T05:30:20.250Z" + }, + { + "id": "15054e36-8e1f-410c-8038-1682aa54bc0e", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.255Z", + "updatedAt": "2023-08-11T05:30:20.255Z" + }, + { + "id": "114ca108-5785-41e3-a668-f93b0786d3a3", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.258Z", + "updatedAt": "2023-08-11T05:30:20.258Z" + }, + { + "id": "8932558d-cc2f-48bc-9073-67284f5519b2", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.260Z", + "updatedAt": "2023-08-11T05:30:20.260Z" + }, + { + "id": "16722499-31b5-4b46-b1df-ed4ad1acc8ec", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.039Z", + "updatedAt": "2023-08-11T05:30:51.039Z" + }, + { + "id": "9a318479-eeab-4446-801a-52e9cfd3070d", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.041Z", + "updatedAt": "2023-08-11T05:30:51.041Z" + }, + { + "id": "8e8d8043-75c0-4d79-b653-6878cf3443d4", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.043Z", + "updatedAt": "2023-08-11T05:30:51.043Z" + }, + { + "id": "9f7ac124-bb3d-49b3-a31e-22d3748893aa", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.046Z", + "updatedAt": "2023-08-11T05:30:51.046Z" + }, + { + "id": "9a550543-805f-4b34-aa13-b92d02f1ffcb", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.049Z", + "updatedAt": "2023-08-11T05:30:51.049Z" + }, + { + "id": "d33927b6-68cb-491c-89ab-92eba9e9e420", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.050Z", + "updatedAt": "2023-08-11T05:30:51.050Z" + }, + { + "id": "1cf19dac-8763-472b-a7c3-79bd785fe5c2", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.054Z", + "updatedAt": "2023-08-11T05:30:51.054Z" + }, + { + "id": "8b0aba4d-a18b-46e0-b6f8-74e3d0e120d0", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.056Z", + "updatedAt": "2023-08-11T05:30:51.056Z" + }, + { + "id": "ce5afd07-2e89-4459-9316-52d3a1ff4cc8", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.058Z", + "updatedAt": "2023-08-11T05:30:51.058Z" + }, + { + "id": "3705a1ca-7f79-4b54-b2f3-9c9c51ac15fb", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.061Z", + "updatedAt": "2023-08-11T05:30:51.061Z" + }, + { + "id": "9f910e79-2e89-4b95-8f51-e4c8f468bb06", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.063Z", + "updatedAt": "2023-08-11T05:30:51.063Z" + }, + { + "id": "c29e2d61-df14-4058-be31-0e6049af3767", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.065Z", + "updatedAt": "2023-08-11T05:30:51.065Z" + }, + { + "id": "a71b2210-07a0-4306-9e9a-58a67cbb16fb", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "970a7dc8-1b45-4629-85f4-0c90d979ac77", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.071Z", + "updatedAt": "2023-08-11T05:30:51.071Z" + }, + { + "id": "ca31376b-a3c7-4816-94f9-6a5f33a18752", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "84b081aa-1af2-4c94-a3f9-0aab8fbb4387", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.076Z", + "updatedAt": "2023-08-11T05:30:51.076Z" + }, + { + "id": "2b3ad55c-e489-4b64-8bb0-3259c2226b9b", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "daf902f8-4130-4b27-b809-054142b85533", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.080Z", + "updatedAt": "2023-08-11T05:30:51.080Z" + }, + { + "id": "e11d8442-b59c-41b4-907b-d6a9d39ba8f4", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "d80cea6e-acc6-4f7d-ba45-33907f1577a8", + "encrypted": true + }, + "refresh_token": { + "credential_id": "1f33c798-34fc-43e6-8194-af259c5896fd", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.093Z", + "updatedAt": "2023-08-11T05:30:51.093Z" + }, + { + "id": "e47dd2ed-a90a-497a-a10e-b8b2e3581137", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.095Z", + "updatedAt": "2023-08-11T05:30:51.095Z" + }, + { + "id": "b331e4cc-f6d1-4ea8-a8a6-ca6b7d5e1417", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "4e208265-326a-4c8f-bcfd-ade4f891b09f", + "encrypted": true + }, + "refresh_token": { + "credential_id": "a88ef077-9fe4-4c13-9be2-5ad9f8581e63", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.100Z", + "updatedAt": "2023-08-11T05:30:51.100Z" + }, + { + "id": "954bf10a-73d9-4f69-8bdf-0343ecb9b914", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "d78c54cb-2c98-4f47-b84a-48b1559d06a6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.108Z", + "updatedAt": "2023-09-08T05:45:17.147Z" + }, + { + "id": "5dd687e3-f975-40ba-a09c-5c38207cec2a", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "046fbaa7-1e06-4272-a199-ecac4e8d3652", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.112Z", + "updatedAt": "2023-08-11T05:30:51.112Z" + }, + { + "id": "dd1e77b2-4316-4422-a7db-0757cebd5ce7", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "ruby.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "xocrerjd", + "encrypted": false + }, + "username": { + "value": "xocrerjd", + "encrypted": false + }, + "password": { + "credential_id": "42639ba9-6e81-4dd0-b614-bbb576283aff", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.116Z", + "updatedAt": "2023-08-11T05:30:51.116Z" + }, + { + "id": "f63bacf8-aa52-4936-b5bf-6cc042c691f9", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "913cdee9-d649-4d0f-a70c-e8054e7ffcc7", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.297Z" + }, + { + "id": "e8a9d1a1-2e9d-4717-8c68-e9c461114ce6", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "0896f5b5-90db-4ec6-8058-ec2c2d2cfc41", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.304Z" + }, + { + "id": "12ab2f62-ccf2-4d1c-9c76-6207b5d7c511", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "599802c3-5323-465b-8339-26dbab02c131", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.303Z" + }, + { + "id": "e07bce03-8500-48b0-b1ff-f4f89d85dfda", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "2e0f0d5c-2025-4829-88ce-b7273c9bd21a", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "46e10728-7756-4ff0-aafa-e5c93d8f78fd", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connection_limit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:43.023Z" + }, + { + "id": "1e833a39-b02e-4875-82b6-41cf152a1a1e", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "7fefa8e8-ae6f-4125-a633-7d0a86f0ef34", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "fc132ba2-e883-42bf-9438-aa8662beb474", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "18f07210-2414-4acf-a61e-14335775ee2e", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "5f6c58ad-e405-4078-ad28-0c589bcd3cd5", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "231d0729-4492-4fce-b255-b0da72228478", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "862bb61e-56c9-4d52-aa7e-4b05c82340a1", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "cab55bc1-cc1c-4aa2-8b45-973b422f246f", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "202ecc77-dfc4-4735-a638-1bc7959287bd", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "5993421e-93b9-4974-8b11-c2031b2733d2", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "3eec46f6-0a59-4281-8573-88bc3ff29761", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "7f623dcd-95d1-4881-b732-61e1dd64e02b", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "bcde9950-77ee-417a-88ae-0ebe400e370d", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "097eaeee-321a-49c3-a9ce-25280a107028", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "fb416dce-f856-477d-a782-b397845d9781", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "308e77b5-ce45-4c86-9742-6c7607fed5a1", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.970Z", + "updatedAt": "2023-08-21T13:56:27.970Z" + }, + { + "id": "f03a0824-fcec-4ac6-87b6-4a9840211de6", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.973Z", + "updatedAt": "2023-08-21T13:56:27.973Z" + }, + { + "id": "0af87cd8-ba96-497f-b4bc-d12ebf047ad2", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.975Z", + "updatedAt": "2023-08-21T13:56:27.975Z" + }, + { + "id": "ee60edbf-1eca-43a3-92d8-422ce3fee6a1", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.980Z", + "updatedAt": "2023-08-21T13:56:27.980Z" + }, + { + "id": "c139c723-3f7c-43c0-bf3b-62fc951ce781", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.983Z", + "updatedAt": "2023-08-21T13:56:27.983Z" + }, + { + "id": "43448873-bf13-4c5d-a4e7-651196b9a342", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.985Z", + "updatedAt": "2023-08-21T13:56:27.985Z" + }, + { + "id": "f573eb7d-ac39-4b75-be62-ae7765965959", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.991Z", + "updatedAt": "2023-08-21T13:56:27.991Z" + }, + { + "id": "b0b405ad-9af6-40e9-ad47-d00543b21d5b", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.993Z", + "updatedAt": "2023-08-21T13:56:27.993Z" + }, + { + "id": "81cf7c3b-2b18-4dfb-862d-61ea48c93731", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.995Z", + "updatedAt": "2023-08-21T13:56:27.995Z" + }, + { + "id": "99ffb143-7554-4771-8748-e8e0692c353d", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.999Z", + "updatedAt": "2023-08-21T13:56:27.999Z" + }, + { + "id": "b58b48b1-3df7-4837-957a-8651dfa10495", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:28.002Z", + "updatedAt": "2023-08-21T13:56:28.002Z" + }, + { + "id": "b0823937-7525-441f-bac2-b76c128f4b9a", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:28.004Z", + "updatedAt": "2023-08-21T13:56:28.004Z" + }, + { + "id": "245a4b8d-77f8-469e-b32b-d59962d1ae47", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2055a89b-a704-405d-a0ef-1b78ccfdb625", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "b2165238-e3ba-4293-a5d9-84e15adc1383", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "e234fc17-4936-4a5c-9fb0-1ce868b8fda8", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "71acc523-8faa-41a8-a321-833f71ffb54e", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "17638875-3f23-418e-8bb2-8a23c6862772", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "6c7010d0-f8e1-43fb-b3b8-2583dfa97f9d", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "f744db0b-412d-4dbd-af66-1d3a1eb9a4e1", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "13af9c1c-6e4a-4cc3-aec5-6f725241194e", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "a61c8e71-457e-473b-b7d9-541c8bddf53a", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2496c4bf-eb4b-4c8c-ba0e-3bd7d1b41e31", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "c7771fa2-5315-4e67-ad76-629fa6303bc8", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "824a1517-83c9-4a73-9888-4b1830080aeb", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "d0681729-dd25-4b9b-996f-41975fe920ef", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "8f22a729-62d4-4521-9123-185d35df6a38", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "3b98d4d8-a48d-47ea-90ca-325cf9c98065", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "ef6ae06d-affb-47b6-a5be-440ac2daed1d", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "ee04414f-bcea-4e44-b701-7e0c3eee4678", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "aa593377-cec9-4031-a711-103cb8cc4ef5", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "17cbbd55-b2ec-4731-9f32-d47529ff903b", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.254Z" + }, + { + "id": "9c7c8855-e71b-47f5-a5fd-7493336c60c4", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "adf7ebf4-0f89-4257-959b-3f96fc835df3", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "140ac414-92c7-4b0a-b84e-a315b5f6b5bd", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "b871cb37-8c70-4cef-a625-0d74969071b2", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "c99af3f7-0d85-4de6-8c1d-48d17bcddda9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "e142d464-2728-4aaa-b497-49252b07e4d9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "af3cbb6f-7d26-4193-8f89-f7fc22fec91a", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "5029c51c-f692-40b6-a032-b053f57d4443", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "dd9719e3-87c9-4a96-843c-1578489663e2", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "1a133da3-b024-4897-8630-0ece1464b567", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.234Z", + "updatedAt": "2023-08-28T07:47:13.234Z" + }, + { + "id": "2cd268e5-7c36-4060-bc24-7ab82838266d", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "025d6ef6-cfdd-4d6d-8441-5868d10c2299", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "87e46111-efff-4524-be64-49d0510152b8", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "b206d8c1-2ac4-4586-8d62-8a418d12e8bf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "9440a869-6e05-49bb-84f2-349be5631406", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "5062282d-ed14-4ff8-b2e2-ad9d8288aeaf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "4a4c3c21-d3ef-4c1f-a50e-a4c15424dc15", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "677a91dc-4373-4e98-b840-95ec5834597b", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "a4bd1a9b-ee08-4f17-b06d-56fa70c16fd0", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "467f2e41-9f98-4292-8777-242d8f1e7c75", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "0349de56-09bb-456a-9cf3-f2c956bef552", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "user_database", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "3a47e3ba-4340-451c-a047-b7f2fa8520bd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "9e07557c-a502-40d3-aaff-6e58f4be04cf", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "1e38a3cd-d349-4819-98e4-578fd7cb70e2", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "c3ebadb7-d5bd-4077-bbfc-cfce8335d1fa", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "4ea736e5-5059-42f8-9ba7-2915c2d98c8d", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "f84c4b0f-7801-4c8e-8ac6-42056d13c9cd", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "0339a258-570a-40cc-9bef-3ef4ad58d8cb", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "2c58a954-1de0-489d-bfc2-595ed5ea523c", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "466513d1-128c-441b-9103-3d538f334dfc", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "e6ff42b5-bbe1-4dbf-b5bf-2b2d88aa23c8", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "307d6ffc-c0a6-4028-be4c-d78e7046a93a", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "4a31dd03-0da1-48b6-abd9-8e4360c33aa6", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "ecac8c08-1ba1-4780-bf2c-f57cad1f67b2", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "995e8fe7-c094-4382-a525-49b50b600e3e", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "32135ca5-91a6-42ba-ac2a-11a66d970f6d", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.898Z" + }, + { + "id": "7fb4953a-64fc-442e-9896-687865020ecc", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "f5e67572-5937-4662-b1bb-570c43387028", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T09:44:58.901Z" + }, + { + "id": "5018c012-11c3-47c0-b2f7-44e35570ce45", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "0a43d696-39bc-41ac-a2ae-ca008482f198", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.899Z" + }, + { + "id": "cdae49ab-72be-4e14-9b64-5d180e1e8567", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "555229cf-1ced-4625-bb08-f1d9dc725141", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "3e5d8554-d032-470b-8153-a4f2747a9d3e", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "ca4e9c9e-c0c9-43b1-9f44-93a19c0821c3", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "52893971-c1a2-4d81-b95c-9a81de6127e5", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "8ed63dbc-22a8-4baa-9f23-638ea088f650", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "6772e351-893e-413a-a249-02a1604062ef", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "3239421c-5716-4d0f-aad0-44a2c3d3da09", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "bdde232b-4363-478a-ab0b-7ade4a4af616", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "00e8a108-1284-4a5f-8d0b-159871c5435f", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "dafc2e2a-f62c-482f-829a-b257debf0017", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "f31ee1d7-8396-4fb6-8d07-7c5894b7cbac", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "61cdc365-6c81-465f-bcbe-938be0bd0e78", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "api_key": { + "credential_id": "157e86ee-8876-4c40-8b33-2b232a0e4479", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.678Z" + }, + { + "id": "c3f0693e-c422-4629-b52d-bbff1fe8e141", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "api_key": { + "credential_id": "4dd17ec9-4107-4018-812c-2c89e1aa5a4c", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.676Z" + }, + { + "id": "cde99d0e-572c-428d-9d9d-3f1302eb1060", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "api_key": { + "credential_id": "88db6f8c-e0a9-45c6-a929-29f0dac8d907", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.665Z" + }, + { + "id": "080e370c-b767-4e8c-b06f-f574f847db9a", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "fb390b10-2760-4c23-acff-50af3bc50063", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "dec7dacb-a6e7-47c7-bb1a-ad7eaf987019", + "encrypted": true + }, + "bearer_token": { + "credential_id": "e5a3f2e7-7ef8-4365-988c-fcd016d5bfa3", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.533Z" + }, + { + "id": "746982f2-cbd0-4f5b-84b3-7aefa7ad9eb8", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "68e8cad0-d2f9-49af-93bc-9a4701e809b1", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b8bedcac-c9d2-4f55-b216-b1dbd48e9dde", + "encrypted": true + }, + "bearer_token": { + "credential_id": "cac95640-d5a7-467b-8f81-9e2387eb8789", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.549Z" + }, + { + "id": "41cafd8f-2f88-463a-bfb0-ea85a737c46e", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "b4cc22dc-06aa-41dc-9d60-bf09eee7af8c", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "5ec07818-521c-48fb-91d9-c6e2d0b09bdc", + "encrypted": true + }, + "bearer_token": { + "credential_id": "36fc5283-190e-4577-8986-074bd777d2ae", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.556Z" + }, + { + "id": "3c0e1b76-6e28-43dc-ae38-ad164f22a5e5", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "3a81117d-b5a9-4b1e-b826-3225234d54e1", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.403Z" + }, + { + "id": "3e6a4aca-c360-4de2-b0f0-c7c1b30de95b", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "6e545171-b88c-4168-86d4-34344a4656a3", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.402Z" + }, + { + "id": "1fb71fef-54ca-48d4-a261-9080d6d90ca1", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "df5cc284-9a76-409b-a0d9-cb644ff98457", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.397Z" + }, + { + "id": "39877a2d-f1e4-4f26-9c49-d90cc74190e2", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.875Z", + "updatedAt": "2023-09-11T18:11:00.875Z" + }, + { + "id": "833c969c-815d-48ef-a754-9d6718cbe4f8", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.879Z", + "updatedAt": "2023-09-11T18:11:00.879Z" + }, + { + "id": "44b5685c-8ec7-4f1c-bd6c-c8447ae85a27", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.881Z", + "updatedAt": "2023-09-11T18:11:00.881Z" + }, + { + "id": "cb7f0613-591f-4fde-b5b0-406e01dc3dd6", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.885Z", + "updatedAt": "2023-09-11T18:11:00.885Z" + }, + { + "id": "586714d4-695b-4ae6-a42d-c001ecf6463a", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.888Z", + "updatedAt": "2023-09-11T18:11:00.888Z" + }, + { + "id": "e129dcee-2b51-402d-8e30-bdfba1755520", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.890Z", + "updatedAt": "2023-09-11T18:11:00.890Z" + }, + { + "id": "e4d11fac-5bbc-4988-b737-b2da7a3104c3", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.893Z", + "updatedAt": "2023-09-11T18:11:00.893Z" + }, + { + "id": "5a650bc5-6bfe-4871-8394-0d33b6073c5b", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.895Z", + "updatedAt": "2023-09-11T18:11:00.895Z" + }, + { + "id": "75a7c301-3b1f-44f6-b39e-05471844374f", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.897Z", + "updatedAt": "2023-09-11T18:11:00.897Z" + }, + { + "id": "589eead6-40c6-48d9-afe2-d7ed3b444a28", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.901Z", + "updatedAt": "2023-09-11T18:11:00.901Z" + }, + { + "id": "51968dcb-089c-43ae-9556-669456135607", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.903Z", + "updatedAt": "2023-09-11T18:11:00.903Z" + }, + { + "id": "2c3d0b2f-9f39-40df-9f41-dabedb0b9492", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.905Z", + "updatedAt": "2023-09-11T18:11:00.905Z" + }, + { + "id": "d6148b7c-2128-4811-a57a-2330f8209c49", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.911Z", + "updatedAt": "2023-09-11T18:11:00.911Z" + }, + { + "id": "8f230473-a489-4d9a-8f28-0e1fdc446edf", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.914Z", + "updatedAt": "2023-09-11T18:11:00.914Z" + }, + { + "id": "a72c4f12-6497-4196-a766-c2dd1470320f", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.916Z", + "updatedAt": "2023-09-11T18:11:00.916Z" + }, + { + "id": "49abc85e-8b91-4ea4-aa10-b7ee18c627fa", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b0460900-6a0d-4798-b107-3713a887f0b4", + "encrypted": true + }, + "bearer_token": { + "credential_id": "0c77121e-5cd0-4b7b-b02f-1b5074df0341", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e3246e5a-a58e-4599-b70a-fe1859a27e18", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.635Z" + }, + { + "id": "aaa2f6eb-08b9-41e3-9ce1-9cab650eece9", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9b5b8b8b-8ff4-4f8d-b5d1-bbb23c706052", + "encrypted": true + }, + "bearer_token": { + "credential_id": "7bf0b7f4-e659-46c7-8cd9-05e0c3393c73", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "a3a6813e-227c-4cab-b513-eea0b3ce4a3c", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.645Z" + }, + { + "id": "6421f2c0-bc11-4a6b-8cba-87249c888e7d", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7584ee6e-06b2-4ff5-a66f-724e169e5e3d", + "encrypted": true + }, + "bearer_token": { + "credential_id": "aba34fdd-d13e-45ab-8fad-2857c82b3fbb", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "41e67acb-ef8e-4063-b5c5-0484997aa45e", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.646Z" + }, + { + "id": "6aaeccbd-6817-4d57-be9a-38292d84dba6", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "8be25480-f672-4392-b0f0-49d3671c37bc", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c35da044-64a1-46cb-be8c-1a584ee843f9", + "encrypted": true + }, + "bearer_token": { + "credential_id": "16765afc-6cf7-40f9-9c96-2f76a4049e3a", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.267Z" + }, + { + "id": "349ccd27-d0c2-4a2c-8f9d-c25c828b499e", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e54d8e8b-4754-42e4-b443-8e3fbc4c41ed", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "0a89973a-6612-4e8a-85be-04737a01c475", + "encrypted": true + }, + "bearer_token": { + "credential_id": "b4def6fe-6194-4fc7-a1aa-c7d5112c66bf", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.265Z" + }, + { + "id": "26a69562-bcb4-49e8-a6c7-8277efd9cf93", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "76e0ebc2-0c89-4c92-82d6-60b32daa0ef4", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e8ba03f7-85d0-4209-a04e-df6541f3b8c8", + "encrypted": true + }, + "bearer_token": { + "credential_id": "c93ec91b-8f13-4027-a7b8-fd1d85fd2ede", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.253Z" + }, + { + "id": "79785d32-3918-4fa5-8ffb-27a38e28fc88", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "d5b84d8f-fa2a-4571-b601-bb0cfd528db6", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "54e35441-2b26-4f25-b2a9-29a6ecee2c4f", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "9c60f1aa-48e0-4fc9-86fa-ec28ba300680", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "c348f79b-cc81-42a5-9f78-4712159b7fd1", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "ec909322-ea53-48ce-aa77-19d39ad28e8b", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "9db09200-91d3-4bf4-b4a4-1e5acdbe06d3", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "8d16cc16-1c17-44c1-b6e8-6679425e19e8", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "30dfbc76-5010-462c-aab9-337587984e94", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "7a9c3ee0-b02d-4fef-8e05-cd3c5ca827cf", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "41dd15b1-8c32-4ac9-9c39-a94b921b514e", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "825533f2-ca52-4ca1-9e68-89d0fc4d11e5", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "255c07a2-6573-4c92-b3af-d3ce3ef42f5f", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "a4b8c404-a080-4329-b50f-ec8942ea7f7e", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.625Z" + }, + { + "id": "049bf73b-094b-41b2-87f3-696f38b505b9", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "localhost", + "encrypted": false + }, + "username": { + "value": "localhost", + "encrypted": false + }, + "password": { + "credential_id": "c83dcbbe-2e56-40c4-a2ae-6600159bff6b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:53.756Z" + }, + { + "id": "0b675807-8cb6-44cd-ba56-17b87cd8a493", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "63c2b598-8a90-4450-90f9-d47b0a5c85f6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.631Z" + }, + { + "id": "a63f7287-37f6-414e-8889-b462eb0b57be", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "928a1535-6acc-48bf-afc7-1e3ae2244a33", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "597074ae-9800-4409-91c3-1408410d1c6c", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "6ff92d12-603a-4549-8b9e-9ac1b92e83f5", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "6ab109a4-6f83-4b14-883e-c8c05f46f9c9", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "d2674a10-11c2-4a28-81db-1c08cac1fbe0", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "b27b0ee7-4fdb-4d8e-9d81-2289498a64f0", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "0e5dcd88-49a1-4d7f-8f10-34d41bed45a5", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "7a2964c8-03a4-48a1-99d4-7a25b61462f3", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "15074c6a-c8f5-409e-9f9b-349152bd5f66", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "2448c268-6dfd-43a6-9555-f68df51b45b6", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "3fcf6c9b-bbf8-45f9-8840-87bddcdddc0f", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "b2c64855-286f-47f5-b790-9fe2cb1e6695", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "ed1aa47d-55b8-42d4-9469-82d8f92ad4d2", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "e4cdf417-b76f-4123-ae6c-41f9667f5669", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "3e89cd97-66b5-4ea7-b14f-e590b12e19c4", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "480a763d-7773-43ef-83df-1124a96b1cab", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.635Z" + }, + { + "id": "288a7b6d-b625-4005-93dc-dcd7a8653b24", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "cc151dc1-999e-42b2-93d0-072fa91be3b2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.643Z" + }, + { + "id": "57b35a07-ae7f-46f1-91ed-d34d0273e5bc", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "inventory_management", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "93da8ad2-d11c-42c6-ba7f-ac0c7be23251", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-22T10:27:25.819Z" + }, + { + "id": "840bc336-5bad-4442-9305-3355bf5940f4", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "1da83b26-ecef-44f4-b8ca-50e4641656d2", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "83fcf4c6-ec28-4d1b-8bc9-9a4df406b9d1", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "63a0cbae-327e-4ed5-b76f-5842818e84c6", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "cd7e82ec-b280-4a94-9850-159e35af72b3", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "200d45fe-aad3-4add-b4ba-751e54521f14", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "e91edce3-9ecb-4026-a47a-591a39465333", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "86d931b7-edf3-4b21-baaf-b150f8dc4fc0", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e880b9ea-a2b2-417f-a164-f1d834506323", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "8b5a287f-08dd-42c1-9179-0a55cd4f7310", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "8163b518-d9ef-4714-b33f-8537c0a48903", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "e3ef7c7b-fed2-44c0-87b2-55283ac90e75", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "7b54ce24-7ca8-414a-a72c-d50950eb3949", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "6c514b05-e8d2-4d81-ac64-61d4d09191a4", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "4badeb69-2c38-4c4e-80f3-fc3f58ec2223", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "220eb433-49a8-4d49-84c4-f285536e3868", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "adef1faa-4651-478f-a834-1934b4c61a99", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "ebfcf35f-2955-4212-967f-cebcddf16c8a", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "6dbc8c78-986e-4079-bbfb-ce4a200b4bf5", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "7da7ea08-cf60-4404-9031-c83776671656", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "0faaacfa-d389-4e66-ac7f-8c93afc5a13e", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "e345b259-fce4-4b2f-8b19-719427b4eb31", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "8e7ef01c-7c06-47a4-8db2-e45357b24ba1", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "019dd8be-5efd-4428-9bee-a389486c5a32", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "5a4cc34a-da23-4a08-badd-bb26130a5913", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "b9b7047b-000c-47cf-bd68-7d6dfbdea44b", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "04c7d955-12a3-451f-a016-c597724f8cd9", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "4f7e0db0-c05a-4a5b-a99b-fdb170901049", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "8fee3e7e-7d30-4fe2-9342-ddb09ad7b6e1", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "3c9adfd7-1064-4999-acb6-b94c5196cc72", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "106e6bb8-7d31-4028-a436-2db539aa3ec1", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "31785b20-89f8-4de5-bf54-1debc1ca261a", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.058Z", + "updatedAt": "2023-09-26T04:59:51.058Z" + }, + { + "id": "6ad412e2-170b-42a5-895f-f841ec47e3c5", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "0cc48002-fd62-4b80-a02a-a04329030e7d", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.063Z", + "updatedAt": "2023-09-27T06:59:36.470Z" + }, + { + "id": "907f19fe-d074-4cd7-adb5-5cb3353d855c", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "4175f457-72d6-4838-b23a-895c9f1479cf", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.068Z", + "updatedAt": "2023-09-26T04:59:51.068Z" + }, + { + "id": "d85fe433-175b-42b6-afda-4eacc1398a22", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "b3f1ca23-5dc4-441a-9ccf-608db6d746e7", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "78b3f9e0-8124-4d37-8da3-788d35f9f4d3", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "3e8cbe50-7a5b-44ba-b366-b80ffee166ff", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "fc2da525-f539-454c-824a-8fda6127e9e0", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "d3181e60-88eb-4ed2-8234-877abb1cca21", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "2358c3c3-e4d1-400f-9069-20186bbdb0a7", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "e05b1995-20c8-4f02-a62c-bb2478baf4ef", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "0899c00c-8a3b-4d41-937c-1925c8958297", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "08f74263-9282-4214-bb80-fc71196cd104", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "43b65b50-ddd3-4cdc-8579-b55a404717be", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "65c6b204-5842-490b-9ec6-81e52146ab69", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "035e7958-ac6f-4873-9df1-8c487eeb4d8f", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "2e84b8b5-e7ae-41ca-86bb-4a0d75e3cdbd", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "931c6a61-e93e-42f8-88d0-3069772a01e4", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "209858f9-b486-4105-ab34-75efb3b3faed", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "df31bda5-d452-4446-adb6-ae4292cfd6c9", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "edab30b9-76cf-46b8-818f-1f34ef222a77", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "e3415f04-a642-4505-b50c-7ea030a8eaeb", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "aeba310e-6507-4d43-82eb-ba8861067b36", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "230ba931-70ab-44e2-b44a-2f60c96c5361", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "f874078b-2a8a-4fe8-b7f8-fdefa9c8beaf", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.905Z", + "updatedAt": "2023-09-27T16:45:57.905Z" + }, + { + "id": "5bb80934-9d75-49cc-a9a3-3e8bb3b90c34", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "2bfb1a7c-823e-4359-b049-4a61db34b911", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "a8648171-928a-48ef-ac7c-2d1cb8bbae6d", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7fd0ea56-a4c5-421c-ac04-c707fd30037a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.609Z" + }, + { + "id": "d3532cce-f05c-4157-b482-d4632ef19c0c", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "35.193.152.84", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "72f1b57e-ed9d-4eb1-b628-d35d0d6bec78", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-10-03T13:27:33.903Z" + }, + { + "id": "7078020a-7967-4597-82fc-a31f0b1cf21e", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "991135d2-7671-45ed-b316-63f03b7a34f0", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.615Z" + }, + { + "id": "5751c539-28cc-4065-b4f2-f321bbe3ee23", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e97c34c1-13bc-4b5f-b240-cc7acc59541a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.799Z" + }, + { + "id": "a765cdaa-0387-461c-bdaa-63b5353028c0", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "8b910d98-de4b-4e9a-bd11-c9004aa81e48", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.805Z" + }, + { + "id": "bf2ce691-b6e1-442b-a649-793d30a9db60", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c4cb2ddd-2504-4457-971e-18f96940393f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.806Z" + }, + { + "id": "7ab8dd61-1478-4003-b7e3-c9546edcd991", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1ad53f8b-ec0e-4492-ac40-24185178d044", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.650Z" + }, + { + "id": "5ea174ed-1189-4646-b93a-05e4ced753b9", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "d9ad9526-6249-4615-b7c6-e0e0f6425658", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:36:58.100Z" + }, + { + "id": "512396b8-88c7-4964-a57d-0236373d14fd", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c3673de1-1377-4752-b9a9-743ac1ec76a5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.642Z" + }, + { + "id": "5c4588ab-8993-455a-b005-6554c3873b8c", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "34d29e8e-3494-4281-9a91-b7f6806002c0", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "a2d691b8-0378-4f0a-ade6-f24c6158578d", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "159e5e0b-3e3d-4306-a6b2-ff9b052172c4", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "56da9e7f-bed6-47de-ac08-c0d733f93b5d", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "f68516ae-87a5-421a-b396-5e7510c16763", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "bc62f0c9-0d44-47ac-a25f-41459e0d5fc4", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "412ce914-c49e-4a81-bcfe-51077d6d17a2", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "227b7d0e-bf04-4481-b137-ad1b23f9ac77", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "007bd34a-9123-4936-933c-2433c6edd899", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "cbd1819f-a223-4207-bea6-d6576f57ea2c", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "a4a1cf81-f577-423e-9544-4ff7796cb289", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "9b773b6b-ea5b-4b4b-b01e-b4dc90142c94", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "d5073421-b5c5-47b5-b4bc-3cad17267c81", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "ac8cc42f-2ada-41f7-b93f-01c64fb3bde6", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "51c5eee4-0af2-4c2b-b711-970b5ae74485", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "85af5670-1dbe-4e33-9e71-38e3d63f785f", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "323825dd-363e-4e0d-93ff-b7c26ebff3a1", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "14b82dee-24eb-4a94-8559-0d9ed6b63d77", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "86a9a4fd-bf05-4770-be53-b8cf2d00c9e6", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "a3d42ef6-7f48-45ad-90a6-c7980d48c12a", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "76971c88-7f60-4297-a6c9-e3666c7b6758", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "b9220430-0410-4bc6-bfed-605f0f92a2ea", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "703288c6-0a61-4744-a16e-687aea9f9a4c", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "feec231b-a32a-4dba-9ce3-41fc172280d2", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "d0692d6c-6b12-4e7c-9cce-64039fcb5ca6", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "bb66eed0-6019-43cf-bb27-a3db15ebee93", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "b5583a48-33ea-48bd-83b5-21ce845a0875", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "a14b567d-5d54-49be-89b4-91b2738c1ca2", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "e4213486-4c50-4874-b98b-299b7f94ab65", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "7f90955a-1301-4773-b110-5970fc71038c", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "872c8f9a-636a-4e22-8386-a544ad4020b9", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.617Z", + "updatedAt": "2023-10-10T09:21:50.617Z" + }, + { + "id": "79a2ecaf-ad5a-4aab-a44c-cb2bc99a8835", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "7fb74b90-480f-4da5-9a34-f7087f8483ab", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.622Z", + "updatedAt": "2023-10-10T09:21:50.622Z" + }, + { + "id": "babdb5a2-4dc2-4a39-909e-1e0b547ca030", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "c896ddb1-70e1-4b57-9739-b7e4069e1262", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.626Z", + "updatedAt": "2023-10-10T09:21:50.626Z" + }, + { + "id": "34f7f3f9-cab0-4e65-bc88-ed4a2e7fbfa1", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "6ba822d7-b917-49e9-a6ff-9a042fc87c08", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "6f2b7870-2f24-435f-badc-eba159c0edc0", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "000997b8-464f-40e8-8f3a-4510ae73fbfe", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "c67db9b9-9cd7-4daf-9bdd-513229ea2ae8", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "cb19358c-f4b9-4ae0-9ff1-ab5f037f4e7a", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "54208746-afd8-4d2d-9fe1-5d2f064c8a07", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "26cd77c6-6387-48ca-92b6-f943a90da690", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "44130f59-3942-4b23-b117-13800ac78881", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "013ef1c8-af8a-4019-b68f-f9a1d2ef7e64", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "18344317-96be-41f3-a4ce-6f769f104323", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "66bf88db-3432-455c-9a5e-d5b59378858f", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "78812b07-46d1-42f2-828d-51d0a1546358", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "998dc168-7f06-45fe-890e-753fe2788326", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "ea038e59-5a5e-40b6-b09a-2356ee1a5e21", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + } + ], + "schemaDetails": { + "multiPages": true, + "multiEnv": true, + "globalDataSources": true + } + } + } + } + ], + "tooljet_version": "2.19.2-ee2.7.0-cloud2.0.9" +} diff --git a/server/templates/customer-support-admin/manifest.json b/server/templates/customer-support-admin/manifest.json new file mode 100644 index 0000000000..a18c53bc15 --- /dev/null +++ b/server/templates/customer-support-admin/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "Customer support admin", + "description": "The Customer Support Admin template streamlines support with a Main Dashboard for ticket management and All Contacts for maintaining customer data.", + "widgets": ["Table", "Chart"], + "sources": [ + { + "name": "Tooljet Database", + "id": "tooljetdb" + } + ], + "id": "customer-support-admin", + "category": "operations" +} diff --git a/server/templates/customer-ticketing-form/definition.json b/server/templates/customer-ticketing-form/definition.json new file mode 100644 index 0000000000..fe42b0125c --- /dev/null +++ b/server/templates/customer-ticketing-form/definition.json @@ -0,0 +1,29622 @@ +{ + "tooljet_database": [ + { + "id": "00fa8265-6121-4c20-aee3-40035a7cbb9e", + "table_name": "support_desk_ticket", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"00fa8265-6121-4c20-aee3-40035a7cbb9e_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "customer_name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "customer_email", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "product_version", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "issue_type", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "description", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "supporting_file_name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "priority", + "data_type": "character varying", + "column_default": "p3", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "status", + "data_type": "character varying", + "column_default": "ticket_generated", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "assigned_to", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "created_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "updated_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + } + ], + "app": [ + { + "definition": { + "appV2": { + "id": "8c5ebe22-b201-4583-b547-9ff400ba5d16", + "type": "front-end", + "name": "Customer ticketing form", + "slug": "8c5ebe22-b201-4583-b547-9ff400ba5d16", + "isPublic": false, + "isMaintenanceOn": false, + "icon": "layers", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "currentVersionId": null, + "userId": "4d572ebe-cd2f-4668-9219-c6e8c1fa2cb1", + "createdAt": "2023-08-11T05:30:20.184Z", + "updatedAt": "2023-09-13T11:25:32.069Z", + "editingVersion": { + "id": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "55741b43-a33b-407d-8375-6d3ceed8e8f9", + "pages": { + "55741b43-a33b-407d-8375-6d3ceed8e8f9": { + "components": { + "1d0b02c3-d4b5-4560-8eff-34b085a249ac": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 40, + "left": 2.271340634282623, + "width": 12.999943892856844, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "653d92a7-d9b2-4478-bebb-3497670f8fb1": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 70, + "left": 2.340832819323842, + "width": 30.997979356411356, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ec2cd99c-ec90-43a9-95e5-5a936317a93d": { + "id": "ec2cd99c-ec90-43a9-95e5-5a936317a93d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 2.32558300402491, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "c35f2843-59ec-45a6-a2c8-9eaa3b06384a": { + "id": "c35f2843-59ec-45a6-a2c8-9eaa3b06384a", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 2.32558300402491, + "width": 30.997979356411356, + "height": 40 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "274367b7-17a4-4131-915d-82fb15e96028": { + "id": "274367b7-17a4-4131-915d-82fb15e96028", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 2.269936562943624, + "width": 13.999924265418707, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "ba4204ae-9137-41a6-9db8-58b26d919799": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{2}}" + }, + "values": { + "value": "{{[1,2,3]}}" + }, + "display_values": { + "value": "{{[\"one\", \"two\", \"three\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 240, + "left": 2.363959339153434, + "width": 31.000729392861025, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "4cf491a4-69a9-4ee0-9934-58d08f1c2c32": { + "id": "4cf491a4-69a9-4ee0-9934-58d08f1c2c32", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Issue type" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 2.325584574753038, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "ee14bdef-478f-4eff-8eca-beb367fce7d5": { + "id": "ee14bdef-478f-4eff-8eca-beb367fce7d5", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{2}}" + }, + "values": { + "value": "{{[1,2,3]}}" + }, + "display_values": { + "value": "{{[\"one\", \"two\", \"three\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 330, + "left": 2.325584574753038, + "width": 31.000729392861025, + "height": 40 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "75de241b-f60d-4cee-a400-cf31b3212896": { + "id": "75de241b-f60d-4cee-a400-cf31b3212896", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Priority" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 390, + "left": 2.325584574753038, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "26aca412-81a7-4b4c-8fef-6b69da6e34eb": { + "id": "26aca412-81a7-4b4c-8fef-6b69da6e34eb", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{2}}" + }, + "values": { + "value": "{{[1,2,3]}}" + }, + "display_values": { + "value": "{{[\"one\", \"two\", \"three\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown3", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420, + "left": 2.325582167152562, + "width": 31.000729392861025, + "height": 40 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "5adff7cb-b45f-4906-be7b-6b348e9daaa2": { + "id": "5adff7cb-b45f-4906-be7b-6b348e9daaa2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 480, + "left": 2.32558125060895, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "4e8991f1-f402-4133-bfc2-cfb6016a43db": { + "component": { + "properties": { + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "defaultValue": { + "type": "code", + "displayName": "Default Value", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "placeholder": { + "value": "Placeholder text" + }, + "defaultValue": { + "value": "" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "richtexteditor1", + "displayName": "Text Editor", + "description": "Rich text editor", + "component": "RichTextEditor", + "defaultSize": { + "width": 16, + "height": 210 + }, + "exposedVariables": { + "value": "" + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 514, + "left": 2.332152759029436, + "width": 31.040040872774956, + "height": 220 + } + }, + "withDefaultChildren": false + }, + "3deeb1e4-f4b9-4265-9dba-aca0b7ecea6d": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#000000ff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#b8b3b3ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 760, + "left": 2.3639561880993387, + "width": 3.021300420326066, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "bea182a3-f57c-4dd0-b881-5c2b4f41f748": { + "id": "bea182a3-f57c-4dd0-b881-5c2b4f41f748", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#ffffffff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#b8b3b300" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Submit" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 760, + "left": 9.302331399691568, + "width": 3.021300420326066, + "height": 40 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "194b2f91-c87c-4d57-a1cd-73c8c79e5341": { + "id": "194b2f91-c87c-4d57-a1cd-73c8c79e5341", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "12" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.createTicket.isLoading || queries.supportingFileNameGenerator.isLoading || queries.uploadSupportingFile.isLoading || queries.sendTicketRaisedEmail.isLoading}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 110, + "left": 51.162770449937035, + "width": 14, + "height": 690 + } + } + }, + "2affe285-5711-4ac6-8e5d-dc90f4dba94e": { + "id": "2affe285-5711-4ac6-8e5d-dc90f4dba94e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 6.922495872209602, + "width": 12.999943892856844, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "5ccb49d5-75f9-4f1e-9f67-70f40bcb3cbc": { + "id": "5ccb49d5-75f9-4f1e-9f67-70f40bcb3cbc", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput3", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 6.976762867842048, + "width": 36.017063569758236, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "0e41e469-e755-4c4b-8cf4-17c3b15d89f3": { + "id": "0e41e469-e755-4c4b-8cf4-17c3b15d89f3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 6.97674262010468, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "d7b378a0-6f37-44f2-93ea-510ab92892d2": { + "id": "d7b378a0-6f37-44f2-93ea-510ab92892d2", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput4.value) || components.textinput4.value == \"\" ? true : \"Invalid email format\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput4", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 7.133581593823546, + "width": 36.11806922196406, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "3215a623-1e32-4188-a135-3274b04ee56d": { + "id": "3215a623-1e32-4188-a135-3274b04ee56d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Version" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 270, + "left": 6.921081590056511, + "width": 13.999924265418707, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "9c5e1966-53d6-4e5e-861e-e490d9e36e16": { + "id": "9c5e1966-53d6-4e5e-861e-e490d9e36e16", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{\"2.7\"}}" + }, + "values": { + "value": "{{[\"2.6\", \"2.7\", \"2.8\"]}}" + }, + "display_values": { + "value": "{{[\"2.6\", \"2.7\", \"2.8\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown4", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 6.97674262010468, + "width": 16.03128323357281, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "1ede35c8-1371-40ff-ba41-5822f004931c": { + "id": "1ede35c8-1371-40ff-ba41-5822f004931c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Issue Type" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 270, + "left": 48.837218588470144, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "ac07c5e1-ba88-4aaf-a170-9b4ea552a47e": { + "id": "ac07c5e1-ba88-4aaf-a170-9b4ea552a47e", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "" + }, + "values": { + "value": "{{[\"feature_request\", \"bug_report\", \"security_issue\", \"general_query\"]}}" + }, + "display_values": { + "value": "{{[\"Feature request\", \"Bug report\", \"Security issue\", \"General query\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown5", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 48.83721858847014, + "width": 18, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "08437b22-01cc-4fea-b0e5-440cb636b810": { + "id": "08437b22-01cc-4fea-b0e5-440cb636b810", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 350, + "left": 6.97674262010468, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "dc648867-70a1-49ef-8800-7bb2080cbac7": { + "id": "dc648867-70a1-49ef-8800-7bb2080cbac7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "cccb1046-5821-4d5a-bdc7-05e32de774da", + "queryName": "createTicket", + "parameters": {}, + "runOnlyIf": "{{components.filepicker1.file.length == 0}}" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "58bd0096-d6c6-4bdf-b5d4-2396ea477f70", + "queryName": "supportingFileNameGenerator", + "parameters": {}, + "runOnlyIf": "{{components.filepicker1.file.length > 0}}" + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#ffffffff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#b8b3b300" + }, + "disabledState": { + "value": "{{components.textinput3.value == \"\"\n|| components.textinput4.value == \"\"\n|| !components.textinput4.isValid\n|| components.dropdown4.value == undefined\n|| components.dropdown5.value == undefined\n|| components.textarea1.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Submit" + }, + "loadingState": { + "value": "{{queries.createTicket.isLoading || queries.supportingFileNameGenerator.isLoading || queries.uploadSupportingFile.isLoading || queries.sendTicketRaisedEmail.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button4", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 614, + "left": 7.35126013683997, + "width": 36.08917329034216, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "237e43e6-e749-42aa-b993-8c0638d1ba08": { + "component": { + "properties": { + "instructionText": { + "type": "code", + "displayName": "Instruction Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "enableDropzone": { + "type": "code", + "displayName": "Use Drop zone", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePicker": { + "type": "code", + "displayName": "Use File Picker", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableMultiple": { + "type": "code", + "displayName": "Pick multiple files", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "maxFileCount": { + "type": "code", + "displayName": "Max file count", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "fileType": { + "type": "code", + "displayName": "Accept file types", + "validation": { + "schema": { + "type": "string" + } + } + }, + "maxSize": { + "type": "code", + "displayName": "Max size limit (Bytes)", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minSize": { + "type": "code", + "displayName": "Min size limit (Bytes)", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "parseContent": { + "type": "toggle", + "displayName": "Parse content", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "parseFileType": { + "type": "select", + "displayName": "File type", + "options": [ + { + "name": "Autodetect from extension", + "value": "auto-detect" + }, + { + "name": "CSV", + "value": "csv" + }, + { + "name": "Microsoft Excel - xls", + "value": "vnd.ms-excel" + }, + { + "name": "Microsoft Excel - xlsx", + "value": "vnd.openxmlformats-officedocument.spreadsheetml.sheet" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onFileSelected": { + "displayName": "On File Selected" + }, + "onFileLoaded": { + "displayName": "On File Loaded" + }, + "onFileDeselected": { + "displayName": "On File Deselected" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "instructionText": { + "value": "Select or Drag and Drop an image file to support this ticket (optional - max. 5MB)" + }, + "enableDropzone": { + "value": "{{true}}" + }, + "enablePicker": { + "value": "{{true}}" + }, + "maxFileCount": { + "value": "{{1}}" + }, + "enableMultiple": { + "value": "{{false}}" + }, + "fileType": { + "value": "{{\"image/*\"}}" + }, + "maxSize": { + "value": "{{1048576}}" + }, + "minSize": { + "value": "{{50}}" + }, + "parseContent": { + "value": "{{false}}" + }, + "parseFileType": { + "value": "auto-detect" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "filepicker1", + "displayName": "File Picker", + "description": "File Picker", + "component": "FilePicker", + "defaultSize": { + "width": 15, + "height": 100 + }, + "actions": [ + { + "handle": "clearFiles", + "displayName": "Clear Files" + } + ], + "exposedVariables": { + "file": [ + { + "name": "", + "content": "", + "dataURL": "", + "type": "", + "parsedData": "" + } + ], + "isParsing": false + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341", + "layouts": { + "desktop": { + "top": 490, + "left": 7.247758584889957, + "width": 36.04298648068748, + "height": 100 + } + }, + "withDefaultChildren": false + }, + "36c66573-6d5b-4fe6-bcb8-f5478ba1ea0e": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Let us know your issue!" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea1", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341", + "layouts": { + "desktop": { + "top": 380, + "left": 6.976742620104676, + "width": 36, + "height": 90 + } + }, + "withDefaultChildren": false + }, + "82025cf9-c612-44af-bebc-7ea869e7b98a": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#408fccff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Tell us how we can improve!" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 279.9999885559082, + "left": 16.279062447868053, + "width": 13, + "height": 110 + } + }, + "withDefaultChildren": false + }, + "36ccd869-f862-4b12-83ca-3b12bcdad190": { + "id": "36ccd869-f862-4b12-83ca-3b12bcdad190", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#408fccff" + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "We are always looking for ways to better our product. Fill the form to let us know your concerns and we'll ensure it's resolved." + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 400, + "left": 16.279062098402292, + "width": 13, + "height": 110 + } + } + }, + "39044347-87ab-4886-9bf6-20fc0e5125c0": { + "id": "39044347-87ab-4886-9bf6-20fc0e5125c0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#408fccff" + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Create a Ticket" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 7.042332475409235, + "width": 20.07033954726483, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "f745a315-7185-4fdb-a310-4746fa0f2bd1": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#e8e8e8ff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341", + "layouts": { + "desktop": { + "top": 60, + "left": 7.042327304560562, + "width": 36.1845374358344, + "height": 10 + } + }, + "withDefaultChildren": false + }, + "8b580842-71b8-4ce6-b7a7-f08e96c9882b": { + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#408fccff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconPhone" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 520, + "left": 20.8940257875017, + "width": 1, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "846128d3-fa3a-497a-9c7d-9f8d8408d4c1": { + "id": "846128d3-fa3a-497a-9c7d-9f8d8408d4c1", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#408fccff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconMail" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 520, + "left": 16.279071197262795, + "width": 1, + "height": 30 + } + } + }, + "9c86bd34-af11-457c-908b-81b7a0b93086": { + "id": "9c86bd34-af11-457c-908b-81b7a0b93086", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#408fccff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconBrandLinkedin" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon3", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 520, + "left": 25.545187408345885, + "width": 1, + "height": 30 + } + } + }, + "5cee6596-3958-4d8c-b234-5632a8887288": { + "id": "5cee6596-3958-4d8c-b234-5632a8887288", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container4", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 43, + "height": 70 + } + } + }, + "9443a137-f86b-445c-b0e0-52ebe55fd580": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": "{{0}}" + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R A N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288", + "layouts": { + "desktop": { + "top": 10, + "left": 2.3255818341487258, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "48288921-7a31-431f-ab7e-86375b9fe0fe": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "C O M M U N I T Y" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button5", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288", + "layouts": { + "desktop": { + "top": 10, + "left": 62.790697979670696, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "334df6ff-e637-4d63-97b7-6ee1e4d97fb6": { + "id": "334df6ff-e637-4d63-97b7-6ee1e4d97fb6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "H O M E" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button6", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 44.18605025096606, + "width": 3, + "height": 40 + } + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288" + }, + "28336983-bd56-4363-9e43-735f4cc38680": { + "id": "28336983-bd56-4363-9e43-735f4cc38680", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B L O G" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button7", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 53.48838231896841, + "width": 3, + "height": 40 + } + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288" + }, + "c47d24d1-2081-49d7-9f22-d73cd15f53ba": { + "id": "c47d24d1-2081-49d7-9f22-d73cd15f53ba", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "A B O U T" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button8", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 76.74418131510417, + "width": 3, + "height": 40 + } + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288" + }, + "53b6bbc4-1ecf-4161-b2f0-05ecd2511a7a": { + "id": "53b6bbc4-1ecf-4161-b2f0-05ecd2511a7a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "C O N T A C T" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button9", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 86.0465101016465, + "width": 4, + "height": 40 + } + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288" + } + }, + "handle": "home", + "name": "Home" + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "1600", + "canvasMaxWidthType": "px", + "canvasMaxHeight": "900", + "canvasBackgroundColor": "", + "backgroundFxQuery": "" + } + }, + "appId": "8c5ebe22-b201-4583-b547-9ff400ba5d16", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-08-11T05:30:20.202Z", + "updatedAt": "2023-10-11T07:03:25.757Z" + }, + "dataQueries": [ + { + "id": "cccb1046-5821-4d5a-bdc7-05e32de774da", + "name": "createTicket", + "options": { + "operation": "create_row", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "support_desk_ticket", + "list_rows": {}, + "create_row": { + "0": { + "column": "customer_name", + "value": "{{components.textinput3.value}}" + }, + "1": { + "column": "customer_email", + "value": "{{components.textinput4.value}}" + }, + "2": { + "column": "product_version", + "value": "{{components.dropdown4.value}}" + }, + "3": { + "column": "issue_type", + "value": "{{components.dropdown5.value}}" + }, + "4": { + "column": "description", + "value": "{{components.textarea1.value}}" + }, + "5": { + "column": "supporting_file_name", + "value": "{{components.filepicker1.file.length > 0 ? queries.supportingFileNameGenerator.data.fileName : \"\"}}" + }, + "6": { + "column": "priority", + "value": "{{({\"feature_request\": \"p3\", \"bug_report\": \"p2\", \"security_issue\": \"p1\", \"general_query\": \"p4\"})[components.dropdown5.value] ?? \"p3\"}}" + }, + "7": { + "column": "status", + "value": "ticket_generated" + }, + "8": { + "column": "created_at", + "value": "{{moment().format()}}" + }, + "11": { + "column": "updated_at", + "value": "{{moment().format()}}" + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Ticket raised successfully. We will contact you through email once we have any update.", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "0494823f-0e22-4bcf-b40a-652898387459", + "queryName": "sendTicketRaisedEmail", + "parameters": {} + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "clear", + "componentId": "5ccb49d5-75f9-4f1e-9f67-70f40bcb3cbc", + "componentSpecificActionParams": [] + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "clear", + "componentId": "d7b378a0-6f37-44f2-93ea-510ab92892d2", + "componentSpecificActionParams": [] + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "selectOption", + "componentId": "9c5e1966-53d6-4e5e-861e-e490d9e36e16", + "componentSpecificActionParams": [ + { + "handle": "select", + "displayName": "Select", + "value": "{{}}" + } + ] + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "selectOption", + "componentId": "ac07c5e1-ba88-4aaf-a170-9b4ea552a47e", + "componentSpecificActionParams": [ + { + "handle": "select", + "displayName": "Select", + "value": "{{}}" + } + ] + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "clear", + "componentId": "36c66573-6d5b-4fe6-bcb8-f5478ba1ea0e", + "componentSpecificActionParams": [] + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "clearFiles", + "componentId": "237e43e6-e749-42aa-b993-8c0638d1ba08", + "componentSpecificActionParams": [] + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to raise ticket. Please review the details and try again.", + "alertType": "warning" + } + ], + "table_id": "00fa8265-6121-4c20-aee3-40035a7cbb9e" + }, + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "appVersionId": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "createdAt": "2023-08-24T09:04:42.858Z", + "updatedAt": "2023-09-13T05:11:25.723Z" + }, + { + "id": "57e3e1fd-6a95-42fe-873e-4078ab0a5468", + "name": "uploadSupportingFile", + "options": { + "maxKeys": 1000, + "transformationLanguage": "javascript", + "enableTransformation": false, + "operation": "upload_object", + "bucket": "datasource-testing", + "contentType": "{{components.filepicker1.file[0].type}}", + "encoding": "base64", + "data": "{{components.filepicker1.file[0].base64Data}}", + "key": "{{queries.supportingFileNameGenerator.data.fileName}}", + "events": [ + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to upload supporting file!", + "alertType": "warning" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "cccb1046-5821-4d5a-bdc7-05e32de774da", + "queryName": "createTicket", + "parameters": {} + } + ] + }, + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "appVersionId": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "createdAt": "2023-08-24T16:59:18.473Z", + "updatedAt": "2023-09-13T14:11:49.226Z" + }, + { + "id": "58bd0096-d6c6-4bdf-b5d4-2396ea477f70", + "name": "supportingFileNameGenerator", + "options": { + "code": "name = \"support_desk_ticket/img_\"+moment().valueOf()+ components.filepicker1.file[0].name.slice(components.filepicker1.file[0].name.lastIndexOf(\".\"));\n\nreturn ({\"fileName\" : name});", + "hasParamSupport": true, + "parameters": [], + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "57e3e1fd-6a95-42fe-873e-4078ab0a5468", + "queryName": "uploadSupportingFile", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to generate file name!", + "alertType": "warning" + } + ] + }, + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "appVersionId": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "createdAt": "2023-08-24T17:15:57.598Z", + "updatedAt": "2023-09-08T12:03:24.493Z" + }, + { + "id": "0494823f-0e22-4bcf-b40a-652898387459", + "name": "sendTicketRaisedEmail", + "options": { + "content_type": { + "value": "plain_text" + }, + "transformationLanguage": "javascript", + "enableTransformation": false, + "from": "support@brand.com", + "from_name": "B R A N D", + "to": "{{components.textinput4.value}}", + "subject": "New Ticket Generated - B R A N D", + "htmlContent": "

Hi {{components.textinput3.value}}
\nA new ticket has been generated.

\n

Ticket Details:
\nIssue type: {{components.dropdown5.selectedOptionLabel}}
\nProduct version: {{components.dropdown4.value}}
\nDescription: {{components.textarea1.value}}
\n

\n

We will contact you once we have an update.

\n

Thanks and regards
\nB R A N D

" + }, + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "appVersionId": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "createdAt": "2023-09-08T06:23:15.236Z", + "updatedAt": "2023-10-10T07:08:00.779Z" + } + ], + "dataSources": [ + { + "id": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "name": "restapidefault", + "kind": "restapi", + "type": "static", + "pluginId": null, + "appVersionId": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:30:20.184Z", + "updatedAt": "2023-08-11T05:30:20.184Z" + }, + { + "id": "ef8bc4eb-5763-475a-945d-0571eccceece", + "name": "runjsdefault", + "kind": "runjs", + "type": "static", + "pluginId": null, + "appVersionId": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:30:20.184Z", + "updatedAt": "2023-08-11T05:30:20.184Z" + }, + { + "id": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "name": "tooljetdbdefault", + "kind": "tooljetdb", + "type": "static", + "pluginId": null, + "appVersionId": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:30:20.184Z", + "updatedAt": "2023-08-11T05:30:20.184Z" + }, + { + "id": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "name": "runpydefault", + "kind": "runpy", + "type": "static", + "pluginId": null, + "appVersionId": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:30:20.184Z", + "updatedAt": "2023-08-11T05:30:20.184Z" + }, + { + "id": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "name": "Support Desk - Mail", + "kind": "smtp", + "type": "default", + "pluginId": null, + "appVersionId": null, + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "scope": "global", + "createdAt": "2023-09-01T08:32:35.880Z", + "updatedAt": "2023-09-01T09:44:58.902Z" + }, + { + "id": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "name": "AWS S3", + "kind": "s3", + "type": "default", + "pluginId": null, + "appVersionId": null, + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "scope": "global", + "createdAt": "2023-08-24T16:58:39.241Z", + "updatedAt": "2023-08-24T16:58:39.241Z" + } + ], + "appVersions": [ + { + "id": "03c92e85-8e44-4b64-9acd-6af9809b5991", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "55741b43-a33b-407d-8375-6d3ceed8e8f9", + "pages": { + "55741b43-a33b-407d-8375-6d3ceed8e8f9": { + "components": { + "1d0b02c3-d4b5-4560-8eff-34b085a249ac": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 40, + "left": 2.271340634282623, + "width": 12.999943892856844, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "653d92a7-d9b2-4478-bebb-3497670f8fb1": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 70, + "left": 2.340832819323842, + "width": 30.997979356411356, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ec2cd99c-ec90-43a9-95e5-5a936317a93d": { + "id": "ec2cd99c-ec90-43a9-95e5-5a936317a93d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 2.32558300402491, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "c35f2843-59ec-45a6-a2c8-9eaa3b06384a": { + "id": "c35f2843-59ec-45a6-a2c8-9eaa3b06384a", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 2.32558300402491, + "width": 30.997979356411356, + "height": 40 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "274367b7-17a4-4131-915d-82fb15e96028": { + "id": "274367b7-17a4-4131-915d-82fb15e96028", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 2.269936562943624, + "width": 13.999924265418707, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "ba4204ae-9137-41a6-9db8-58b26d919799": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{2}}" + }, + "values": { + "value": "{{[1,2,3]}}" + }, + "display_values": { + "value": "{{[\"one\", \"two\", \"three\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 240, + "left": 2.363959339153434, + "width": 31.000729392861025, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "4cf491a4-69a9-4ee0-9934-58d08f1c2c32": { + "id": "4cf491a4-69a9-4ee0-9934-58d08f1c2c32", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Issue type" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 2.325584574753038, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "ee14bdef-478f-4eff-8eca-beb367fce7d5": { + "id": "ee14bdef-478f-4eff-8eca-beb367fce7d5", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{2}}" + }, + "values": { + "value": "{{[1,2,3]}}" + }, + "display_values": { + "value": "{{[\"one\", \"two\", \"three\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 330, + "left": 2.325584574753038, + "width": 31.000729392861025, + "height": 40 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "75de241b-f60d-4cee-a400-cf31b3212896": { + "id": "75de241b-f60d-4cee-a400-cf31b3212896", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Priority" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 390, + "left": 2.325584574753038, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "26aca412-81a7-4b4c-8fef-6b69da6e34eb": { + "id": "26aca412-81a7-4b4c-8fef-6b69da6e34eb", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{2}}" + }, + "values": { + "value": "{{[1,2,3]}}" + }, + "display_values": { + "value": "{{[\"one\", \"two\", \"three\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown3", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420, + "left": 2.325582167152562, + "width": 31.000729392861025, + "height": 40 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "5adff7cb-b45f-4906-be7b-6b348e9daaa2": { + "id": "5adff7cb-b45f-4906-be7b-6b348e9daaa2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 480, + "left": 2.32558125060895, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "4e8991f1-f402-4133-bfc2-cfb6016a43db": { + "component": { + "properties": { + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "defaultValue": { + "type": "code", + "displayName": "Default Value", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "placeholder": { + "value": "Placeholder text" + }, + "defaultValue": { + "value": "" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "richtexteditor1", + "displayName": "Text Editor", + "description": "Rich text editor", + "component": "RichTextEditor", + "defaultSize": { + "width": 16, + "height": 210 + }, + "exposedVariables": { + "value": "" + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 514, + "left": 2.332152759029436, + "width": 31.040040872774956, + "height": 220 + } + }, + "withDefaultChildren": false + }, + "3deeb1e4-f4b9-4265-9dba-aca0b7ecea6d": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#000000ff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#b8b3b3ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57", + "layouts": { + "desktop": { + "top": 760, + "left": 2.3639561880993387, + "width": 3.021300420326066, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "bea182a3-f57c-4dd0-b881-5c2b4f41f748": { + "id": "bea182a3-f57c-4dd0-b881-5c2b4f41f748", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#ffffffff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#b8b3b300" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Submit" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 760, + "left": 9.302331399691568, + "width": 3.021300420326066, + "height": 40 + } + }, + "parent": "425f9c31-f1de-4e20-8671-bf2c55c74a57" + }, + "194b2f91-c87c-4d57-a1cd-73c8c79e5341": { + "id": "194b2f91-c87c-4d57-a1cd-73c8c79e5341", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "12" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.createTicket.isLoading || queries.supportingFileNameGenerator.isLoading || queries.uploadSupportingFile.isLoading || queries.sendTicketRaisedEmail.isLoading}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 110, + "left": 51.162770449937035, + "width": 14, + "height": 690 + } + } + }, + "2affe285-5711-4ac6-8e5d-dc90f4dba94e": { + "id": "2affe285-5711-4ac6-8e5d-dc90f4dba94e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 6.922495872209602, + "width": 12.999943892856844, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "5ccb49d5-75f9-4f1e-9f67-70f40bcb3cbc": { + "id": "5ccb49d5-75f9-4f1e-9f67-70f40bcb3cbc", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput3", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 6.976762867842048, + "width": 36.017063569758236, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "0e41e469-e755-4c4b-8cf4-17c3b15d89f3": { + "id": "0e41e469-e755-4c4b-8cf4-17c3b15d89f3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 6.97674262010468, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "d7b378a0-6f37-44f2-93ea-510ab92892d2": { + "id": "d7b378a0-6f37-44f2-93ea-510ab92892d2", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput4.value) || components.textinput4.value == \"\" ? true : \"Invalid email format\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput4", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 7.133581593823546, + "width": 36.11806922196406, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "3215a623-1e32-4188-a135-3274b04ee56d": { + "id": "3215a623-1e32-4188-a135-3274b04ee56d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Version" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 270, + "left": 6.921081590056511, + "width": 13.999924265418707, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "9c5e1966-53d6-4e5e-861e-e490d9e36e16": { + "id": "9c5e1966-53d6-4e5e-861e-e490d9e36e16", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "{{\"2.7\"}}" + }, + "values": { + "value": "{{[\"2.6\", \"2.7\", \"2.8\"]}}" + }, + "display_values": { + "value": "{{[\"2.6\", \"2.7\", \"2.8\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown4", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 6.97674262010468, + "width": 16.03128323357281, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "1ede35c8-1371-40ff-ba41-5822f004931c": { + "id": "1ede35c8-1371-40ff-ba41-5822f004931c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Issue Type" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 270, + "left": 48.837218588470144, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "ac07c5e1-ba88-4aaf-a170-9b4ea552a47e": { + "id": "ac07c5e1-ba88-4aaf-a170-9b4ea552a47e", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "label": { + "value": "" + }, + "value": { + "value": "" + }, + "values": { + "value": "{{[\"feature_request\", \"bug_report\", \"security_issue\", \"general_query\"]}}" + }, + "display_values": { + "value": "{{[\"Feature request\", \"Bug report\", \"Security issue\", \"General query\"]}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown5", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 48.83721858847014, + "width": 18, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "08437b22-01cc-4fea-b0e5-440cb636b810": { + "id": "08437b22-01cc-4fea-b0e5-440cb636b810", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 350, + "left": 6.97674262010468, + "width": 13.953488372093023, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "dc648867-70a1-49ef-8800-7bb2080cbac7": { + "id": "dc648867-70a1-49ef-8800-7bb2080cbac7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "cccb1046-5821-4d5a-bdc7-05e32de774da", + "queryName": "createTicket", + "parameters": {}, + "runOnlyIf": "{{components.filepicker1.file.length == 0}}" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "58bd0096-d6c6-4bdf-b5d4-2396ea477f70", + "queryName": "supportingFileNameGenerator", + "parameters": {}, + "runOnlyIf": "{{components.filepicker1.file.length > 0}}" + } + ], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "textColor": { + "value": "#ffffffff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#b8b3b300" + }, + "disabledState": { + "value": "{{components.textinput3.value == \"\"\n|| components.textinput4.value == \"\"\n|| !components.textinput4.isValid\n|| components.dropdown4.value == undefined\n|| components.dropdown5.value == undefined\n|| components.textarea1.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Submit" + }, + "loadingState": { + "value": "{{queries.createTicket.isLoading || queries.supportingFileNameGenerator.isLoading || queries.uploadSupportingFile.isLoading || queries.sendTicketRaisedEmail.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button4", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 614, + "left": 7.35126013683997, + "width": 36.08917329034216, + "height": 40 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "237e43e6-e749-42aa-b993-8c0638d1ba08": { + "component": { + "properties": { + "instructionText": { + "type": "code", + "displayName": "Instruction Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "enableDropzone": { + "type": "code", + "displayName": "Use Drop zone", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePicker": { + "type": "code", + "displayName": "Use File Picker", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableMultiple": { + "type": "code", + "displayName": "Pick multiple files", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "maxFileCount": { + "type": "code", + "displayName": "Max file count", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "fileType": { + "type": "code", + "displayName": "Accept file types", + "validation": { + "schema": { + "type": "string" + } + } + }, + "maxSize": { + "type": "code", + "displayName": "Max size limit (Bytes)", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minSize": { + "type": "code", + "displayName": "Min size limit (Bytes)", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "parseContent": { + "type": "toggle", + "displayName": "Parse content", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "parseFileType": { + "type": "select", + "displayName": "File type", + "options": [ + { + "name": "Autodetect from extension", + "value": "auto-detect" + }, + { + "name": "CSV", + "value": "csv" + }, + { + "name": "Microsoft Excel - xls", + "value": "vnd.ms-excel" + }, + { + "name": "Microsoft Excel - xlsx", + "value": "vnd.openxmlformats-officedocument.spreadsheetml.sheet" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onFileSelected": { + "displayName": "On File Selected" + }, + "onFileLoaded": { + "displayName": "On File Loaded" + }, + "onFileDeselected": { + "displayName": "On File Deselected" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "instructionText": { + "value": "Select or Drag and Drop an image file to support this ticket (optional - max. 5MB)" + }, + "enableDropzone": { + "value": "{{true}}" + }, + "enablePicker": { + "value": "{{true}}" + }, + "maxFileCount": { + "value": "{{1}}" + }, + "enableMultiple": { + "value": "{{false}}" + }, + "fileType": { + "value": "{{\"image/*\"}}" + }, + "maxSize": { + "value": "{{1048576}}" + }, + "minSize": { + "value": "{{50}}" + }, + "parseContent": { + "value": "{{false}}" + }, + "parseFileType": { + "value": "auto-detect" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "filepicker1", + "displayName": "File Picker", + "description": "File Picker", + "component": "FilePicker", + "defaultSize": { + "width": 15, + "height": 100 + }, + "actions": [ + { + "handle": "clearFiles", + "displayName": "Clear Files" + } + ], + "exposedVariables": { + "file": [ + { + "name": "", + "content": "", + "dataURL": "", + "type": "", + "parsedData": "" + } + ], + "isParsing": false + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341", + "layouts": { + "desktop": { + "top": 490, + "left": 7.247758584889957, + "width": 36.04298648068748, + "height": 100 + } + }, + "withDefaultChildren": false + }, + "36c66573-6d5b-4fe6-bcb8-f5478ba1ea0e": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Let us know your issue!" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea1", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341", + "layouts": { + "desktop": { + "top": 380, + "left": 6.976742620104676, + "width": 36, + "height": 90 + } + }, + "withDefaultChildren": false + }, + "82025cf9-c612-44af-bebc-7ea869e7b98a": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#408fccff" + }, + "textSize": { + "value": "{{36}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Tell us how we can improve!" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 279.9999885559082, + "left": 16.279062447868053, + "width": 13, + "height": 110 + } + }, + "withDefaultChildren": false + }, + "36ccd869-f862-4b12-83ca-3b12bcdad190": { + "id": "36ccd869-f862-4b12-83ca-3b12bcdad190", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#408fccff" + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "We are always looking for ways to better our product. Fill the form to let us know your concerns and we'll ensure it's resolved." + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 400, + "left": 16.279062098402292, + "width": 13, + "height": 110 + } + } + }, + "39044347-87ab-4886-9bf6-20fc0e5125c0": { + "id": "39044347-87ab-4886-9bf6-20fc0e5125c0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#408fccff" + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Create a Ticket" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 7.042332475409235, + "width": 20.07033954726483, + "height": 30 + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341" + }, + "f745a315-7185-4fdb-a310-4746fa0f2bd1": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#e8e8e8ff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "194b2f91-c87c-4d57-a1cd-73c8c79e5341", + "layouts": { + "desktop": { + "top": 60, + "left": 7.042327304560562, + "width": 36.1845374358344, + "height": 10 + } + }, + "withDefaultChildren": false + }, + "8b580842-71b8-4ce6-b7a7-f08e96c9882b": { + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#408fccff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconPhone" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 520, + "left": 20.8940257875017, + "width": 1, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "846128d3-fa3a-497a-9c7d-9f8d8408d4c1": { + "id": "846128d3-fa3a-497a-9c7d-9f8d8408d4c1", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#408fccff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconMail" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 520, + "left": 16.279071197262795, + "width": 1, + "height": 30 + } + } + }, + "9c86bd34-af11-457c-908b-81b7a0b93086": { + "id": "9c86bd34-af11-457c-908b-81b7a0b93086", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#408fccff" + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconBrandLinkedin" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon3", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 520, + "left": 25.545187408345885, + "width": 1, + "height": 30 + } + } + }, + "5cee6596-3958-4d8c-b234-5632a8887288": { + "id": "5cee6596-3958-4d8c-b234-5632a8887288", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#12344dff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container4", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 43, + "height": 70 + } + } + }, + "9443a137-f86b-445c-b0e0-52ebe55fd580": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": "{{0}}" + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R A N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288", + "layouts": { + "desktop": { + "top": 10, + "left": 2.3255818341487258, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "48288921-7a31-431f-ab7e-86375b9fe0fe": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "C O M M U N I T Y" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button5", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288", + "layouts": { + "desktop": { + "top": 10, + "left": 62.790697979670696, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "334df6ff-e637-4d63-97b7-6ee1e4d97fb6": { + "id": "334df6ff-e637-4d63-97b7-6ee1e4d97fb6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "H O M E" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button6", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 44.18605025096606, + "width": 3, + "height": 40 + } + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288" + }, + "28336983-bd56-4363-9e43-735f4cc38680": { + "id": "28336983-bd56-4363-9e43-735f4cc38680", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B L O G" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button7", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 53.48838231896841, + "width": 3, + "height": 40 + } + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288" + }, + "c47d24d1-2081-49d7-9f22-d73cd15f53ba": { + "id": "c47d24d1-2081-49d7-9f22-d73cd15f53ba", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "A B O U T" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button8", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 76.74418131510417, + "width": 3, + "height": 40 + } + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288" + }, + "53b6bbc4-1ecf-4161-b2f0-05ecd2511a7a": { + "id": "53b6bbc4-1ecf-4161-b2f0-05ecd2511a7a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{50}}" + }, + "borderColor": { + "value": "#ffffff00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "C O N T A C T" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button9", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 86.0465101016465, + "width": 4, + "height": 40 + } + }, + "parent": "5cee6596-3958-4d8c-b234-5632a8887288" + } + }, + "handle": "home", + "name": "Home" + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "1600", + "canvasMaxWidthType": "px", + "canvasMaxHeight": "900", + "canvasBackgroundColor": "", + "backgroundFxQuery": "" + } + }, + "appId": "8c5ebe22-b201-4583-b547-9ff400ba5d16", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-08-11T05:30:20.202Z", + "updatedAt": "2023-10-11T07:03:25.757Z" + } + ], + "appEnvironments": [ + { + "id": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "production", + "isDefault": true, + "priority": 3, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "staging", + "isDefault": false, + "priority": 2, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "development", + "isDefault": false, + "priority": 1, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + } + ], + "dataSourceOptions": [ + { + "id": "0c980db9-a929-481a-be6a-b71ea5ad2107", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "7f703daa-1e72-4a75-bc70-884816577a05", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a115c49b-a119-40d0-8db0-f020724207ad", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e138a408-40a3-4a04-8f43-d4d9f77b670d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "24db297d-9213-4102-a253-26a34565ee73", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "73e98e30-9fd0-4ee2-b001-a91cc6fa8396", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4bb78281-112c-411c-9fc1-fe6b8c4ef0c9", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "4edc07e1-819c-433d-9545-7156e0813abf", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "7eb5fab2-76bb-4457-b049-d2fc338cd143", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a729b4d1-1520-4a4f-92d9-5b4d39e609a7", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a1043e60-e673-4041-a64f-e26e4609cdbf", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b5192850-7615-4e13-b1ae-93b956f5be03", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e8040071-0a1a-4e11-a04f-7cbc179d5868", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "ef525392-c7cb-431d-8525-afd52f2a0131", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "ca1f9156-a727-4e4d-b609-396d9ad65b7a", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e950b029-4156-4afe-8a18-e7927aafc191", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "100298a0-928d-4589-a70f-34a0926a28a1", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "aba37959-1599-4a70-ae4c-7b05ffa2a800", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ffbf05e-51d6-4087-a11f-b4d7e431dc83", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8210c7ae-f59e-4bea-b0c5-50c118343441", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "63a0be80-a870-4cc2-ab64-8127efbd108d", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "869450d4-61c3-4d90-b714-4b1881e39518", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd7cbbff-0d68-4493-983d-37b726ebc98c", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3e4c6b07-8e27-4163-a2f2-cbb55942f87b", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "70a7e577-d084-40ce-a5e7-058c86912c66", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "ca37482f-4921-4c56-87dc-6b2eae124de4", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "35c27146-7fc0-4b09-a2ce-0f245bbf714b", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3bfaae26-a193-41be-a6df-6c854851ec90", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a1d06fc-5357-4784-8468-61886137214b", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "4ebed5f4-aa04-4674-88b5-475de6305c15", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "09bf5c38-8cec-4973-8855-643c5133d87e", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4254e048-0e9c-4173-ac9b-6448fdfe0272", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "81c95c9d-4d5c-4509-bcc0-9b6db463646a", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "a4fec9af-15b8-4288-a3dc-c6797f050b2c", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "72371933-729a-4e35-9915-950ed7d1a6da", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "dc16dddb-6eb9-4a56-8b83-c7821c1be3e4", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a59db8a-b46b-4411-ba16-c6e9614fde09", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "6fc0a89f-6fe0-48ed-b085-f1ba06c15b00", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9c069f5a-1e8c-432e-ac34-4bd3102d8c84", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9ce12342-7f72-4170-a0c3-a2fa750b08ec", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "08bc41cc-49b7-46f1-a7d8-e491f3b1e687", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e5d9ca99-a662-4dc3-bb06-11d3efc5b0e6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df795abb-982a-4a49-852a-6e049d72b063", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd79676a-f641-4f13-897c-a4487298e956", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "109373cc-a29d-49cf-9c09-b78d9000c797", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "394cd4b9-6678-4666-a3b4-7220fdc9f3fa", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "49a16184-fb7f-4302-8f3a-183203af3e13", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "58c756e7-4ac8-47e5-ad47-dd9f3bd54bd6", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3eb4f10b-d70f-457b-a6d6-1facf33bb388", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ed34011-fb0c-4df6-9ac3-c0722e5afc15", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "603ecf7a-24ca-4102-a3a2-9adf3540d47f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "064644df-c753-4c38-a368-08760a852289", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df6525aa-cba3-40aa-92be-d908007f1d47", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "427cc0a3-b736-4552-a043-849312f72535", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "fd4bc72c-00f5-42d5-9fe6-758b3c4e05a1", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b92d7e20-aef7-408c-a5fd-cfb1afe3802f", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a980201d-0197-41af-8b44-5b9a777d08db", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a011c5e5-60bd-44d4-a057-b5aa23b75aee", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "bb811868-ea85-4b54-8a13-e999971eeb9d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f9d33ef5-bf7d-4c52-a919-64cd39b5a9c5", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "69f40c97-1d4e-4f87-9a98-7f0a12a3238b", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "5a13235b-390e-4888-bbca-4c0e7e85b811", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e096bd24-e396-4893-88dd-2872176057a2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "cd9235bc-aec9-4da1-b22c-e7da50f3cde6", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f7cf3288-f755-40db-ac07-c6f0832b7c6b", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "42d8efc3-5c1a-4085-a259-b38e0a5c2df5", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "7e49e5a8-08d7-4a02-897c-13d235ab00f9", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0af3f0c9-bf1e-4b60-8868-25dcaa5c509c", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b3ca510b-fd4d-48b1-a204-39905d3553d6", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "2b64c284-3043-4011-b501-7438f977e8d6", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "66234021-3d1e-4314-aa85-233e15c788c4", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "649ebc41-1207-4383-ac37-affebaf46025", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd459a47-9e32-448b-a362-a957ed61a744", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "ea086241-7ebf-42b3-a9e0-98e7f9615fde", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.259Z", + "updatedAt": "2023-02-07T08:20:48.259Z" + }, + { + "id": "2f3691b6-4dc5-49db-be70-2646b0b37b3e", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "88454045-b2a0-4f59-baf5-0f32a0f5000c", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.268Z", + "updatedAt": "2023-02-07T08:20:48.268Z" + }, + { + "id": "0a14939a-e6e2-4156-833d-692fa2374241", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "0d46628b-d8e9-4463-b4d1-bf254a825ffd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.273Z", + "updatedAt": "2023-02-07T08:20:48.273Z" + }, + { + "id": "fcd55e6a-7b48-4541-b86b-8fc5d661ff08", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.283Z", + "updatedAt": "2023-02-07T08:20:48.283Z" + }, + { + "id": "3e6b2492-3d73-4792-b447-3bd27a74d424", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.287Z", + "updatedAt": "2023-02-07T08:20:48.287Z" + }, + { + "id": "506a0e32-25c0-4a19-a6f7-9d04c339d28b", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.289Z", + "updatedAt": "2023-02-07T08:20:48.289Z" + }, + { + "id": "6b19a6ab-7756-4386-9592-6ab4d5fa98d1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.295Z", + "updatedAt": "2023-02-07T08:20:48.295Z" + }, + { + "id": "af5be5e6-666d-4437-a75c-a10830980dbe", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.297Z", + "updatedAt": "2023-02-07T08:20:48.297Z" + }, + { + "id": "983162ea-8848-4388-b88c-971523d0cbb1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.299Z", + "updatedAt": "2023-02-07T08:20:48.299Z" + }, + { + "id": "a308e389-9497-4f1b-9564-5424a0a0b7b1", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.348Z", + "updatedAt": "2023-02-07T08:20:48.348Z" + }, + { + "id": "18d6b459-7d7d-4ba0-9ee7-c581844e0d45", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.351Z", + "updatedAt": "2023-02-07T08:20:48.351Z" + }, + { + "id": "478e9b22-6f4d-45fa-b50f-77b45a616669", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.353Z", + "updatedAt": "2023-02-07T08:20:48.353Z" + }, + { + "id": "bd491146-3009-418f-a4d6-5e976d966a01", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.356Z", + "updatedAt": "2023-02-07T08:20:48.356Z" + }, + { + "id": "9383e443-5c0f-4fe9-ac9a-273971edd22b", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.357Z", + "updatedAt": "2023-02-07T08:20:48.357Z" + }, + { + "id": "764bce5d-3227-4681-806f-50051e97a6f1", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.359Z", + "updatedAt": "2023-02-07T08:20:48.359Z" + }, + { + "id": "2f79cbc9-4ecc-4a2a-8f14-624961660a51", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "2f701e52-7cfe-49a8-bb40-956ed45342d1", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.858Z", + "updatedAt": "2023-02-07T10:13:59.858Z" + }, + { + "id": "ce715761-73f2-46b1-95f2-124d2b098a77", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "da58d6d5-09e3-4d72-a3cb-48277e4d5379", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.863Z", + "updatedAt": "2023-02-07T10:13:59.863Z" + }, + { + "id": "116031c1-ee38-483d-9625-b13548d97459", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "999deb1f-6190-4508-8607-2b57a9acf977", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.867Z", + "updatedAt": "2023-02-07T10:13:59.867Z" + }, + { + "id": "9da2713d-98d6-4388-a5e7-42cb22d2a0f9", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "d5b29186-21d7-45e3-a40c-7d3a4a6306e2", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.762Z" + }, + { + "id": "9659e653-8eca-4ed1-9cfa-c27c3080bc61", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9fe7b96b-8899-40ae-bfb2-f2c56c89389e", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.834Z" + }, + { + "id": "4ba4ad64-bdac-45e2-a112-da4bb720e654", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "f20d22f2-75db-4ff7-94d1-3667878c031b", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.842Z" + }, + { + "id": "1c193e6d-f21a-4945-a1a3-0271900258ef", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1852e614-7f87-4e16-8d35-ae924ce2193b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.450Z", + "updatedAt": "2023-07-07T10:07:23.333Z" + }, + { + "id": "f9ff54d6-55af-4428-ad9a-75343cd2cd36", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e3baf697-ea3e-4f03-be01-db6d0344f635", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.698Z" + }, + { + "id": "7c172ef0-eabb-4ce1-9fef-7534e4804218", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b159f378-74b0-44cb-9b04-ea4a1c02bd09", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.706Z" + }, + { + "id": "c85938e4-7be9-46c6-b37f-045435dc17e7", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "a754d3d0-ff68-47b0-ad58-073862e0e78a", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "91112338-8edc-437e-a066-eb7445b8c9f0", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "57204c96-1590-49d0-ae82-85d6096b4f3f", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.753Z", + "updatedAt": "2023-07-21T15:39:41.753Z" + }, + { + "id": "5d8aeece-e171-4f98-a17a-dafcf094eefc", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.754Z", + "updatedAt": "2023-07-21T15:39:41.754Z" + }, + { + "id": "37f7e000-2b47-429f-b7e4-9e024479d9b8", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.756Z", + "updatedAt": "2023-07-21T15:39:41.756Z" + }, + { + "id": "fb85fb2c-9aed-4dda-b167-d9b95bd8695f", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.762Z", + "updatedAt": "2023-07-21T15:39:41.762Z" + }, + { + "id": "57bc1c57-3a79-4f8c-8f82-743783098320", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.764Z", + "updatedAt": "2023-07-21T15:39:41.764Z" + }, + { + "id": "e3df8c1e-e689-460e-a1c0-a6ac34e2c6fb", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.765Z", + "updatedAt": "2023-07-21T15:39:41.765Z" + }, + { + "id": "ddb73901-f6b8-4e98-a98e-d20764e981d5", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.770Z", + "updatedAt": "2023-07-21T15:39:41.770Z" + }, + { + "id": "64ded0f0-a523-46e0-8de4-1233af798e69", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.773Z", + "updatedAt": "2023-07-21T15:39:41.773Z" + }, + { + "id": "563951c4-3c25-4c16-85bd-bf35c67c541d", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.774Z", + "updatedAt": "2023-07-21T15:39:41.774Z" + }, + { + "id": "7054580b-dcf1-42db-8599-b295874586e4", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "apiKey": { + "credential_id": "309cd1c4-4241-4757-9216-7c1d5052a6f2", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.508Z" + }, + { + "id": "35da5f37-e660-4711-8b89-3ed348857e88", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "apiKey": { + "credential_id": "61601401-8d9b-47d8-81cc-fcb0ab9df125", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.509Z" + }, + { + "id": "69646d74-947f-4ac7-9560-b58fce035d3c", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "apiKey": { + "credential_id": "02ea1d76-bf4e-40b5-a57a-ad02467754d7", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.489Z" + }, + { + "id": "607909a2-1d4d-4bab-8468-1f0f8351ab14", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.735Z", + "updatedAt": "2023-08-11T05:25:31.735Z" + }, + { + "id": "9423866f-d475-42c3-b2a7-c63be6ed9abb", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.739Z", + "updatedAt": "2023-08-11T05:25:31.739Z" + }, + { + "id": "90a1596f-5d45-4ad4-a376-3b555f4773bd", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.741Z", + "updatedAt": "2023-08-11T05:25:31.741Z" + }, + { + "id": "a41de1f3-3486-4f59-a964-fd99a077d61b", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.747Z", + "updatedAt": "2023-08-11T05:25:31.747Z" + }, + { + "id": "5b452053-b728-48ea-969f-35ee44bd449e", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.750Z", + "updatedAt": "2023-08-11T05:25:31.750Z" + }, + { + "id": "b4e5d146-7682-44c6-b009-9a59a3a144bb", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.752Z", + "updatedAt": "2023-08-11T05:25:31.752Z" + }, + { + "id": "d01715d9-1ffb-405e-b5e3-b9d786697627", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.761Z", + "updatedAt": "2023-08-11T05:25:31.761Z" + }, + { + "id": "fff3b76b-14f9-49c2-9520-ccff9f3b0239", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.764Z", + "updatedAt": "2023-08-11T05:25:31.764Z" + }, + { + "id": "c1136230-787e-4985-afa3-ec88e383b3c1", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.766Z", + "updatedAt": "2023-08-11T05:25:31.766Z" + }, + { + "id": "6e14d7b5-99db-4f14-84e4-8fa34ca096da", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.772Z", + "updatedAt": "2023-08-11T05:25:31.772Z" + }, + { + "id": "a0bed57b-7aae-4a5a-b154-49cdd9e508cb", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.775Z", + "updatedAt": "2023-08-11T05:25:31.775Z" + }, + { + "id": "13272f64-55dc-4fd9-a692-9dc9afe40b97", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.780Z", + "updatedAt": "2023-08-11T05:25:31.780Z" + }, + { + "id": "abbd66ec-c0a2-4893-8bd1-a90100ec7963", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.785Z", + "updatedAt": "2023-08-11T05:25:31.785Z" + }, + { + "id": "563d611b-ed1e-46a1-bad7-f1ffd91cffef", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connection_limit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf05673058", + "encrypted": false + }, + "password": { + "value": "08BcGsD9))xK7rpLAKDw8QK", + "encrypted": false + }, + "host": { + "value": "dbpwf05673058.sysp0000.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "supplychain", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.788Z", + "updatedAt": "2023-08-11T05:25:31.788Z" + }, + { + "id": "eb8f5145-06ae-4ee6-bd79-26bbacf672d7", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.791Z", + "updatedAt": "2023-08-11T05:25:31.791Z" + }, + { + "id": "d8dbbb97-667b-42cf-8e1d-c3920b91ae0a", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "34b17572-60b1-4895-bd93-5c85ba03b319", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "aa622b9c-27c6-45c6-8ec7-471e4a346a7c", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "3d4a1b27-f9bd-47ae-aaaa-d1564e91456a", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.804Z", + "updatedAt": "2023-08-11T05:27:56.804Z" + }, + { + "id": "525b25cb-90b1-4d2c-80cf-b4fc2b3e4fee", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.807Z", + "updatedAt": "2023-08-11T05:27:56.807Z" + }, + { + "id": "4a853db8-3f1d-4cf2-93c2-ce3e28266b36", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.809Z", + "updatedAt": "2023-08-11T05:27:56.809Z" + }, + { + "id": "846b03f8-f6e1-4a79-8ae7-d545c1f4f0b5", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.813Z", + "updatedAt": "2023-08-11T05:27:56.813Z" + }, + { + "id": "4de0613b-4f14-40c9-aeac-7d027ff73833", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.815Z", + "updatedAt": "2023-08-11T05:27:56.815Z" + }, + { + "id": "69eb4761-b882-4c51-8e11-e568731bc43e", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.818Z", + "updatedAt": "2023-08-11T05:27:56.818Z" + }, + { + "id": "564f68c5-4980-493f-9699-1ff567482fd0", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.821Z", + "updatedAt": "2023-08-11T05:27:56.821Z" + }, + { + "id": "06d2856d-000f-47d1-a7ff-8e818eb42478", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.824Z", + "updatedAt": "2023-08-11T05:27:56.824Z" + }, + { + "id": "f2579e45-a0bd-423f-b724-9af76d33ea87", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.825Z", + "updatedAt": "2023-08-11T05:27:56.825Z" + }, + { + "id": "773493c0-efdf-465a-bab1-910a8ff9c6c8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "5a426139-fa01-4ea3-b1fe-9794e901503f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.832Z", + "updatedAt": "2023-08-11T05:27:56.832Z" + }, + { + "id": "026abb10-56a6-488b-b36c-f55d613893fc", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "1c465591-2ecf-4a81-945f-8dc32d7d12c5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.838Z", + "updatedAt": "2023-08-11T05:27:56.838Z" + }, + { + "id": "6c3b028c-314a-4534-8660-d412d627cda8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "159a0956-8cfb-4aa6-8a3a-e833042c6a86", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.845Z", + "updatedAt": "2023-08-11T05:27:56.845Z" + }, + { + "id": "67450519-17ee-4c56-a7ea-a0a596d3f139", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.231Z", + "updatedAt": "2023-08-11T05:30:20.231Z" + }, + { + "id": "ebb05718-564b-48dc-be97-fe9042a03a32", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.233Z", + "updatedAt": "2023-08-11T05:30:20.233Z" + }, + { + "id": "906cfd94-81db-408d-8771-ac9dd7475525", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.235Z", + "updatedAt": "2023-08-11T05:30:20.235Z" + }, + { + "id": "8ce3c15e-ce3c-443b-be1b-41de4ba604c5", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.239Z", + "updatedAt": "2023-08-11T05:30:20.239Z" + }, + { + "id": "c09660a0-0d13-4c77-825b-05035e7009d3", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.241Z", + "updatedAt": "2023-08-11T05:30:20.241Z" + }, + { + "id": "81225ea3-efa6-497f-a7a0-c4993eb0ccf4", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.243Z", + "updatedAt": "2023-08-11T05:30:20.243Z" + }, + { + "id": "fe1d2b79-b36f-4b6a-a169-05c7dfc012ae", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.246Z", + "updatedAt": "2023-08-11T05:30:20.246Z" + }, + { + "id": "c006f812-b14d-492f-bbb3-473498b1f0d1", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.249Z", + "updatedAt": "2023-08-11T05:30:20.249Z" + }, + { + "id": "44bb1b06-e6d5-4762-ae62-1ee890f646b3", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.250Z", + "updatedAt": "2023-08-11T05:30:20.250Z" + }, + { + "id": "15054e36-8e1f-410c-8038-1682aa54bc0e", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.255Z", + "updatedAt": "2023-08-11T05:30:20.255Z" + }, + { + "id": "114ca108-5785-41e3-a668-f93b0786d3a3", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.258Z", + "updatedAt": "2023-08-11T05:30:20.258Z" + }, + { + "id": "8932558d-cc2f-48bc-9073-67284f5519b2", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.260Z", + "updatedAt": "2023-08-11T05:30:20.260Z" + }, + { + "id": "16722499-31b5-4b46-b1df-ed4ad1acc8ec", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.039Z", + "updatedAt": "2023-08-11T05:30:51.039Z" + }, + { + "id": "9a318479-eeab-4446-801a-52e9cfd3070d", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.041Z", + "updatedAt": "2023-08-11T05:30:51.041Z" + }, + { + "id": "8e8d8043-75c0-4d79-b653-6878cf3443d4", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.043Z", + "updatedAt": "2023-08-11T05:30:51.043Z" + }, + { + "id": "9f7ac124-bb3d-49b3-a31e-22d3748893aa", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.046Z", + "updatedAt": "2023-08-11T05:30:51.046Z" + }, + { + "id": "9a550543-805f-4b34-aa13-b92d02f1ffcb", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.049Z", + "updatedAt": "2023-08-11T05:30:51.049Z" + }, + { + "id": "d33927b6-68cb-491c-89ab-92eba9e9e420", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.050Z", + "updatedAt": "2023-08-11T05:30:51.050Z" + }, + { + "id": "1cf19dac-8763-472b-a7c3-79bd785fe5c2", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.054Z", + "updatedAt": "2023-08-11T05:30:51.054Z" + }, + { + "id": "8b0aba4d-a18b-46e0-b6f8-74e3d0e120d0", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.056Z", + "updatedAt": "2023-08-11T05:30:51.056Z" + }, + { + "id": "ce5afd07-2e89-4459-9316-52d3a1ff4cc8", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.058Z", + "updatedAt": "2023-08-11T05:30:51.058Z" + }, + { + "id": "3705a1ca-7f79-4b54-b2f3-9c9c51ac15fb", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.061Z", + "updatedAt": "2023-08-11T05:30:51.061Z" + }, + { + "id": "9f910e79-2e89-4b95-8f51-e4c8f468bb06", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.063Z", + "updatedAt": "2023-08-11T05:30:51.063Z" + }, + { + "id": "c29e2d61-df14-4058-be31-0e6049af3767", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.065Z", + "updatedAt": "2023-08-11T05:30:51.065Z" + }, + { + "id": "a71b2210-07a0-4306-9e9a-58a67cbb16fb", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "970a7dc8-1b45-4629-85f4-0c90d979ac77", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.071Z", + "updatedAt": "2023-08-11T05:30:51.071Z" + }, + { + "id": "ca31376b-a3c7-4816-94f9-6a5f33a18752", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "84b081aa-1af2-4c94-a3f9-0aab8fbb4387", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.076Z", + "updatedAt": "2023-08-11T05:30:51.076Z" + }, + { + "id": "2b3ad55c-e489-4b64-8bb0-3259c2226b9b", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "daf902f8-4130-4b27-b809-054142b85533", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.080Z", + "updatedAt": "2023-08-11T05:30:51.080Z" + }, + { + "id": "e11d8442-b59c-41b4-907b-d6a9d39ba8f4", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "d80cea6e-acc6-4f7d-ba45-33907f1577a8", + "encrypted": true + }, + "refresh_token": { + "credential_id": "1f33c798-34fc-43e6-8194-af259c5896fd", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.093Z", + "updatedAt": "2023-08-11T05:30:51.093Z" + }, + { + "id": "e47dd2ed-a90a-497a-a10e-b8b2e3581137", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.095Z", + "updatedAt": "2023-08-11T05:30:51.095Z" + }, + { + "id": "b331e4cc-f6d1-4ea8-a8a6-ca6b7d5e1417", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "4e208265-326a-4c8f-bcfd-ade4f891b09f", + "encrypted": true + }, + "refresh_token": { + "credential_id": "a88ef077-9fe4-4c13-9be2-5ad9f8581e63", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.100Z", + "updatedAt": "2023-08-11T05:30:51.100Z" + }, + { + "id": "954bf10a-73d9-4f69-8bdf-0343ecb9b914", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "d78c54cb-2c98-4f47-b84a-48b1559d06a6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.108Z", + "updatedAt": "2023-09-08T05:45:17.147Z" + }, + { + "id": "5dd687e3-f975-40ba-a09c-5c38207cec2a", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "046fbaa7-1e06-4272-a199-ecac4e8d3652", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.112Z", + "updatedAt": "2023-08-11T05:30:51.112Z" + }, + { + "id": "dd1e77b2-4316-4422-a7db-0757cebd5ce7", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "ruby.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "xocrerjd", + "encrypted": false + }, + "username": { + "value": "xocrerjd", + "encrypted": false + }, + "password": { + "credential_id": "42639ba9-6e81-4dd0-b614-bbb576283aff", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.116Z", + "updatedAt": "2023-08-11T05:30:51.116Z" + }, + { + "id": "f63bacf8-aa52-4936-b5bf-6cc042c691f9", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "913cdee9-d649-4d0f-a70c-e8054e7ffcc7", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.297Z" + }, + { + "id": "12ab2f62-ccf2-4d1c-9c76-6207b5d7c511", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "599802c3-5323-465b-8339-26dbab02c131", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.303Z" + }, + { + "id": "e8a9d1a1-2e9d-4717-8c68-e9c461114ce6", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "0896f5b5-90db-4ec6-8058-ec2c2d2cfc41", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.304Z" + }, + { + "id": "e07bce03-8500-48b0-b1ff-f4f89d85dfda", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "2e0f0d5c-2025-4829-88ce-b7273c9bd21a", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "46e10728-7756-4ff0-aafa-e5c93d8f78fd", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connection_limit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:43.023Z" + }, + { + "id": "fc132ba2-e883-42bf-9438-aa8662beb474", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "1e833a39-b02e-4875-82b6-41cf152a1a1e", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "7fefa8e8-ae6f-4125-a633-7d0a86f0ef34", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "18f07210-2414-4acf-a61e-14335775ee2e", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "231d0729-4492-4fce-b255-b0da72228478", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "5f6c58ad-e405-4078-ad28-0c589bcd3cd5", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "202ecc77-dfc4-4735-a638-1bc7959287bd", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "cab55bc1-cc1c-4aa2-8b45-973b422f246f", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "862bb61e-56c9-4d52-aa7e-4b05c82340a1", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "3eec46f6-0a59-4281-8573-88bc3ff29761", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "7f623dcd-95d1-4881-b732-61e1dd64e02b", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "5993421e-93b9-4974-8b11-c2031b2733d2", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "097eaeee-321a-49c3-a9ce-25280a107028", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "bcde9950-77ee-417a-88ae-0ebe400e370d", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "fb416dce-f856-477d-a782-b397845d9781", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "308e77b5-ce45-4c86-9742-6c7607fed5a1", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.970Z", + "updatedAt": "2023-08-21T13:56:27.970Z" + }, + { + "id": "f03a0824-fcec-4ac6-87b6-4a9840211de6", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.973Z", + "updatedAt": "2023-08-21T13:56:27.973Z" + }, + { + "id": "0af87cd8-ba96-497f-b4bc-d12ebf047ad2", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.975Z", + "updatedAt": "2023-08-21T13:56:27.975Z" + }, + { + "id": "ee60edbf-1eca-43a3-92d8-422ce3fee6a1", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.980Z", + "updatedAt": "2023-08-21T13:56:27.980Z" + }, + { + "id": "c139c723-3f7c-43c0-bf3b-62fc951ce781", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.983Z", + "updatedAt": "2023-08-21T13:56:27.983Z" + }, + { + "id": "43448873-bf13-4c5d-a4e7-651196b9a342", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.985Z", + "updatedAt": "2023-08-21T13:56:27.985Z" + }, + { + "id": "f573eb7d-ac39-4b75-be62-ae7765965959", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.991Z", + "updatedAt": "2023-08-21T13:56:27.991Z" + }, + { + "id": "b0b405ad-9af6-40e9-ad47-d00543b21d5b", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.993Z", + "updatedAt": "2023-08-21T13:56:27.993Z" + }, + { + "id": "81cf7c3b-2b18-4dfb-862d-61ea48c93731", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.995Z", + "updatedAt": "2023-08-21T13:56:27.995Z" + }, + { + "id": "99ffb143-7554-4771-8748-e8e0692c353d", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.999Z", + "updatedAt": "2023-08-21T13:56:27.999Z" + }, + { + "id": "b58b48b1-3df7-4837-957a-8651dfa10495", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:28.002Z", + "updatedAt": "2023-08-21T13:56:28.002Z" + }, + { + "id": "b0823937-7525-441f-bac2-b76c128f4b9a", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:28.004Z", + "updatedAt": "2023-08-21T13:56:28.004Z" + }, + { + "id": "f744db0b-412d-4dbd-af66-1d3a1eb9a4e1", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "d0681729-dd25-4b9b-996f-41975fe920ef", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "8f22a729-62d4-4521-9123-185d35df6a38", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "17638875-3f23-418e-8bb2-8a23c6862772", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "6c7010d0-f8e1-43fb-b3b8-2583dfa97f9d", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "245a4b8d-77f8-469e-b32b-d59962d1ae47", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2055a89b-a704-405d-a0ef-1b78ccfdb625", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "e234fc17-4936-4a5c-9fb0-1ce868b8fda8", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "71acc523-8faa-41a8-a321-833f71ffb54e", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "b2165238-e3ba-4293-a5d9-84e15adc1383", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "13af9c1c-6e4a-4cc3-aec5-6f725241194e", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "a61c8e71-457e-473b-b7d9-541c8bddf53a", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2496c4bf-eb4b-4c8c-ba0e-3bd7d1b41e31", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "c7771fa2-5315-4e67-ad76-629fa6303bc8", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "824a1517-83c9-4a73-9888-4b1830080aeb", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "3b98d4d8-a48d-47ea-90ca-325cf9c98065", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "ee04414f-bcea-4e44-b701-7e0c3eee4678", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "ef6ae06d-affb-47b6-a5be-440ac2daed1d", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "140ac414-92c7-4b0a-b84e-a315b5f6b5bd", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "b871cb37-8c70-4cef-a625-0d74969071b2", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "9c7c8855-e71b-47f5-a5fd-7493336c60c4", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "adf7ebf4-0f89-4257-959b-3f96fc835df3", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "aa593377-cec9-4031-a711-103cb8cc4ef5", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "17cbbd55-b2ec-4731-9f32-d47529ff903b", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.254Z" + }, + { + "id": "e142d464-2728-4aaa-b497-49252b07e4d9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "c99af3f7-0d85-4de6-8c1d-48d17bcddda9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "af3cbb6f-7d26-4193-8f89-f7fc22fec91a", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "dd9719e3-87c9-4a96-843c-1578489663e2", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "5029c51c-f692-40b6-a032-b053f57d4443", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "1a133da3-b024-4897-8630-0ece1464b567", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.234Z", + "updatedAt": "2023-08-28T07:47:13.234Z" + }, + { + "id": "025d6ef6-cfdd-4d6d-8441-5868d10c2299", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "2cd268e5-7c36-4060-bc24-7ab82838266d", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "87e46111-efff-4524-be64-49d0510152b8", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "9440a869-6e05-49bb-84f2-349be5631406", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "b206d8c1-2ac4-4586-8d62-8a418d12e8bf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "5062282d-ed14-4ff8-b2e2-ad9d8288aeaf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "a4bd1a9b-ee08-4f17-b06d-56fa70c16fd0", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "467f2e41-9f98-4292-8777-242d8f1e7c75", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "4a4c3c21-d3ef-4c1f-a50e-a4c15424dc15", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "677a91dc-4373-4e98-b840-95ec5834597b", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "0349de56-09bb-456a-9cf3-f2c956bef552", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "user_database", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "3a47e3ba-4340-451c-a047-b7f2fa8520bd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "1e38a3cd-d349-4819-98e4-578fd7cb70e2", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "9e07557c-a502-40d3-aaff-6e58f4be04cf", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "c3ebadb7-d5bd-4077-bbfc-cfce8335d1fa", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "f84c4b0f-7801-4c8e-8ac6-42056d13c9cd", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "0339a258-570a-40cc-9bef-3ef4ad58d8cb", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "4ea736e5-5059-42f8-9ba7-2915c2d98c8d", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "2c58a954-1de0-489d-bfc2-595ed5ea523c", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "466513d1-128c-441b-9103-3d538f334dfc", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "e6ff42b5-bbe1-4dbf-b5bf-2b2d88aa23c8", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "ecac8c08-1ba1-4780-bf2c-f57cad1f67b2", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "307d6ffc-c0a6-4028-be4c-d78e7046a93a", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "4a31dd03-0da1-48b6-abd9-8e4360c33aa6", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "7fb4953a-64fc-442e-9896-687865020ecc", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "f5e67572-5937-4662-b1bb-570c43387028", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T09:44:58.901Z" + }, + { + "id": "5018c012-11c3-47c0-b2f7-44e35570ce45", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "0a43d696-39bc-41ac-a2ae-ca008482f198", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.899Z" + }, + { + "id": "995e8fe7-c094-4382-a525-49b50b600e3e", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "32135ca5-91a6-42ba-ac2a-11a66d970f6d", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.898Z" + }, + { + "id": "555229cf-1ced-4625-bb08-f1d9dc725141", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "3e5d8554-d032-470b-8153-a4f2747a9d3e", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "cdae49ab-72be-4e14-9b64-5d180e1e8567", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "52893971-c1a2-4d81-b95c-9a81de6127e5", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "8ed63dbc-22a8-4baa-9f23-638ea088f650", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "ca4e9c9e-c0c9-43b1-9f44-93a19c0821c3", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "bdde232b-4363-478a-ab0b-7ade4a4af616", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "6772e351-893e-413a-a249-02a1604062ef", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "3239421c-5716-4d0f-aad0-44a2c3d3da09", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "dafc2e2a-f62c-482f-829a-b257debf0017", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "f31ee1d7-8396-4fb6-8d07-7c5894b7cbac", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "00e8a108-1284-4a5f-8d0b-159871c5435f", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "c3f0693e-c422-4629-b52d-bbff1fe8e141", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "api_key": { + "credential_id": "4dd17ec9-4107-4018-812c-2c89e1aa5a4c", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.676Z" + }, + { + "id": "cde99d0e-572c-428d-9d9d-3f1302eb1060", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "api_key": { + "credential_id": "88db6f8c-e0a9-45c6-a929-29f0dac8d907", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.665Z" + }, + { + "id": "61cdc365-6c81-465f-bcbe-938be0bd0e78", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "api_key": { + "credential_id": "157e86ee-8876-4c40-8b33-2b232a0e4479", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.678Z" + }, + { + "id": "080e370c-b767-4e8c-b06f-f574f847db9a", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "fb390b10-2760-4c23-acff-50af3bc50063", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "dec7dacb-a6e7-47c7-bb1a-ad7eaf987019", + "encrypted": true + }, + "bearer_token": { + "credential_id": "e5a3f2e7-7ef8-4365-988c-fcd016d5bfa3", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.533Z" + }, + { + "id": "746982f2-cbd0-4f5b-84b3-7aefa7ad9eb8", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "68e8cad0-d2f9-49af-93bc-9a4701e809b1", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b8bedcac-c9d2-4f55-b216-b1dbd48e9dde", + "encrypted": true + }, + "bearer_token": { + "credential_id": "cac95640-d5a7-467b-8f81-9e2387eb8789", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.549Z" + }, + { + "id": "41cafd8f-2f88-463a-bfb0-ea85a737c46e", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "b4cc22dc-06aa-41dc-9d60-bf09eee7af8c", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "5ec07818-521c-48fb-91d9-c6e2d0b09bdc", + "encrypted": true + }, + "bearer_token": { + "credential_id": "36fc5283-190e-4577-8986-074bd777d2ae", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.556Z" + }, + { + "id": "3e6a4aca-c360-4de2-b0f0-c7c1b30de95b", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "6e545171-b88c-4168-86d4-34344a4656a3", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.402Z" + }, + { + "id": "1fb71fef-54ca-48d4-a261-9080d6d90ca1", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "df5cc284-9a76-409b-a0d9-cb644ff98457", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.397Z" + }, + { + "id": "3c0e1b76-6e28-43dc-ae38-ad164f22a5e5", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "3a81117d-b5a9-4b1e-b826-3225234d54e1", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.403Z" + }, + { + "id": "39877a2d-f1e4-4f26-9c49-d90cc74190e2", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.875Z", + "updatedAt": "2023-09-11T18:11:00.875Z" + }, + { + "id": "833c969c-815d-48ef-a754-9d6718cbe4f8", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.879Z", + "updatedAt": "2023-09-11T18:11:00.879Z" + }, + { + "id": "44b5685c-8ec7-4f1c-bd6c-c8447ae85a27", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.881Z", + "updatedAt": "2023-09-11T18:11:00.881Z" + }, + { + "id": "cb7f0613-591f-4fde-b5b0-406e01dc3dd6", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.885Z", + "updatedAt": "2023-09-11T18:11:00.885Z" + }, + { + "id": "586714d4-695b-4ae6-a42d-c001ecf6463a", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.888Z", + "updatedAt": "2023-09-11T18:11:00.888Z" + }, + { + "id": "e129dcee-2b51-402d-8e30-bdfba1755520", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.890Z", + "updatedAt": "2023-09-11T18:11:00.890Z" + }, + { + "id": "e4d11fac-5bbc-4988-b737-b2da7a3104c3", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.893Z", + "updatedAt": "2023-09-11T18:11:00.893Z" + }, + { + "id": "5a650bc5-6bfe-4871-8394-0d33b6073c5b", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.895Z", + "updatedAt": "2023-09-11T18:11:00.895Z" + }, + { + "id": "75a7c301-3b1f-44f6-b39e-05471844374f", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.897Z", + "updatedAt": "2023-09-11T18:11:00.897Z" + }, + { + "id": "589eead6-40c6-48d9-afe2-d7ed3b444a28", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.901Z", + "updatedAt": "2023-09-11T18:11:00.901Z" + }, + { + "id": "51968dcb-089c-43ae-9556-669456135607", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.903Z", + "updatedAt": "2023-09-11T18:11:00.903Z" + }, + { + "id": "2c3d0b2f-9f39-40df-9f41-dabedb0b9492", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.905Z", + "updatedAt": "2023-09-11T18:11:00.905Z" + }, + { + "id": "d6148b7c-2128-4811-a57a-2330f8209c49", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.911Z", + "updatedAt": "2023-09-11T18:11:00.911Z" + }, + { + "id": "8f230473-a489-4d9a-8f28-0e1fdc446edf", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.914Z", + "updatedAt": "2023-09-11T18:11:00.914Z" + }, + { + "id": "a72c4f12-6497-4196-a766-c2dd1470320f", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.916Z", + "updatedAt": "2023-09-11T18:11:00.916Z" + }, + { + "id": "49abc85e-8b91-4ea4-aa10-b7ee18c627fa", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b0460900-6a0d-4798-b107-3713a887f0b4", + "encrypted": true + }, + "bearer_token": { + "credential_id": "0c77121e-5cd0-4b7b-b02f-1b5074df0341", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e3246e5a-a58e-4599-b70a-fe1859a27e18", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.635Z" + }, + { + "id": "aaa2f6eb-08b9-41e3-9ce1-9cab650eece9", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9b5b8b8b-8ff4-4f8d-b5d1-bbb23c706052", + "encrypted": true + }, + "bearer_token": { + "credential_id": "7bf0b7f4-e659-46c7-8cd9-05e0c3393c73", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "a3a6813e-227c-4cab-b513-eea0b3ce4a3c", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.645Z" + }, + { + "id": "6421f2c0-bc11-4a6b-8cba-87249c888e7d", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7584ee6e-06b2-4ff5-a66f-724e169e5e3d", + "encrypted": true + }, + "bearer_token": { + "credential_id": "aba34fdd-d13e-45ab-8fad-2857c82b3fbb", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "41e67acb-ef8e-4063-b5c5-0484997aa45e", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.646Z" + }, + { + "id": "26a69562-bcb4-49e8-a6c7-8277efd9cf93", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "76e0ebc2-0c89-4c92-82d6-60b32daa0ef4", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e8ba03f7-85d0-4209-a04e-df6541f3b8c8", + "encrypted": true + }, + "bearer_token": { + "credential_id": "c93ec91b-8f13-4027-a7b8-fd1d85fd2ede", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.253Z" + }, + { + "id": "6aaeccbd-6817-4d57-be9a-38292d84dba6", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "8be25480-f672-4392-b0f0-49d3671c37bc", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c35da044-64a1-46cb-be8c-1a584ee843f9", + "encrypted": true + }, + "bearer_token": { + "credential_id": "16765afc-6cf7-40f9-9c96-2f76a4049e3a", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.267Z" + }, + { + "id": "349ccd27-d0c2-4a2c-8f9d-c25c828b499e", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e54d8e8b-4754-42e4-b443-8e3fbc4c41ed", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "0a89973a-6612-4e8a-85be-04737a01c475", + "encrypted": true + }, + "bearer_token": { + "credential_id": "b4def6fe-6194-4fc7-a1aa-c7d5112c66bf", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.265Z" + }, + { + "id": "54e35441-2b26-4f25-b2a9-29a6ecee2c4f", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "79785d32-3918-4fa5-8ffb-27a38e28fc88", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "d5b84d8f-fa2a-4571-b601-bb0cfd528db6", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "ec909322-ea53-48ce-aa77-19d39ad28e8b", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "c348f79b-cc81-42a5-9f78-4712159b7fd1", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "9c60f1aa-48e0-4fc9-86fa-ec28ba300680", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "8d16cc16-1c17-44c1-b6e8-6679425e19e8", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "30dfbc76-5010-462c-aab9-337587984e94", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "9db09200-91d3-4bf4-b4a4-1e5acdbe06d3", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "825533f2-ca52-4ca1-9e68-89d0fc4d11e5", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "7a9c3ee0-b02d-4fef-8e05-cd3c5ca827cf", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "41dd15b1-8c32-4ac9-9c39-a94b921b514e", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "049bf73b-094b-41b2-87f3-696f38b505b9", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "localhost", + "encrypted": false + }, + "username": { + "value": "localhost", + "encrypted": false + }, + "password": { + "credential_id": "c83dcbbe-2e56-40c4-a2ae-6600159bff6b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:53.756Z" + }, + { + "id": "255c07a2-6573-4c92-b3af-d3ce3ef42f5f", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "a4b8c404-a080-4329-b50f-ec8942ea7f7e", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.625Z" + }, + { + "id": "0b675807-8cb6-44cd-ba56-17b87cd8a493", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "63c2b598-8a90-4450-90f9-d47b0a5c85f6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.631Z" + }, + { + "id": "928a1535-6acc-48bf-afc7-1e3ae2244a33", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "a63f7287-37f6-414e-8889-b462eb0b57be", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "597074ae-9800-4409-91c3-1408410d1c6c", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "6ff92d12-603a-4549-8b9e-9ac1b92e83f5", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "d2674a10-11c2-4a28-81db-1c08cac1fbe0", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "6ab109a4-6f83-4b14-883e-c8c05f46f9c9", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "0e5dcd88-49a1-4d7f-8f10-34d41bed45a5", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "7a2964c8-03a4-48a1-99d4-7a25b61462f3", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "b27b0ee7-4fdb-4d8e-9d81-2289498a64f0", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "15074c6a-c8f5-409e-9f9b-349152bd5f66", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "3fcf6c9b-bbf8-45f9-8840-87bddcdddc0f", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "2448c268-6dfd-43a6-9555-f68df51b45b6", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "e4cdf417-b76f-4123-ae6c-41f9667f5669", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "ed1aa47d-55b8-42d4-9469-82d8f92ad4d2", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "b2c64855-286f-47f5-b790-9fe2cb1e6695", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "288a7b6d-b625-4005-93dc-dcd7a8653b24", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "cc151dc1-999e-42b2-93d0-072fa91be3b2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.643Z" + }, + { + "id": "57b35a07-ae7f-46f1-91ed-d34d0273e5bc", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "inventory_management", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "93da8ad2-d11c-42c6-ba7f-ac0c7be23251", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-22T10:27:25.819Z" + }, + { + "id": "3e89cd97-66b5-4ea7-b14f-e590b12e19c4", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "480a763d-7773-43ef-83df-1124a96b1cab", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.635Z" + }, + { + "id": "83fcf4c6-ec28-4d1b-8bc9-9a4df406b9d1", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "1da83b26-ecef-44f4-b8ca-50e4641656d2", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "840bc336-5bad-4442-9305-3355bf5940f4", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "200d45fe-aad3-4add-b4ba-751e54521f14", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "63a0cbae-327e-4ed5-b76f-5842818e84c6", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "cd7e82ec-b280-4a94-9850-159e35af72b3", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "86d931b7-edf3-4b21-baaf-b150f8dc4fc0", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e880b9ea-a2b2-417f-a164-f1d834506323", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e91edce3-9ecb-4026-a47a-591a39465333", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e3ef7c7b-fed2-44c0-87b2-55283ac90e75", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "8b5a287f-08dd-42c1-9179-0a55cd4f7310", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "8163b518-d9ef-4714-b33f-8537c0a48903", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "4badeb69-2c38-4c4e-80f3-fc3f58ec2223", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "7b54ce24-7ca8-414a-a72c-d50950eb3949", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "6c514b05-e8d2-4d81-ac64-61d4d09191a4", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "ebfcf35f-2955-4212-967f-cebcddf16c8a", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "220eb433-49a8-4d49-84c4-f285536e3868", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "adef1faa-4651-478f-a834-1934b4c61a99", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "6dbc8c78-986e-4079-bbfb-ce4a200b4bf5", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "0faaacfa-d389-4e66-ac7f-8c93afc5a13e", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "7da7ea08-cf60-4404-9031-c83776671656", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "8e7ef01c-7c06-47a4-8db2-e45357b24ba1", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "e345b259-fce4-4b2f-8b19-719427b4eb31", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "019dd8be-5efd-4428-9bee-a389486c5a32", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "b9b7047b-000c-47cf-bd68-7d6dfbdea44b", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "5a4cc34a-da23-4a08-badd-bb26130a5913", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "04c7d955-12a3-451f-a016-c597724f8cd9", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "8fee3e7e-7d30-4fe2-9342-ddb09ad7b6e1", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "3c9adfd7-1064-4999-acb6-b94c5196cc72", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "4f7e0db0-c05a-4a5b-a99b-fdb170901049", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "106e6bb8-7d31-4028-a436-2db539aa3ec1", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "31785b20-89f8-4de5-bf54-1debc1ca261a", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.058Z", + "updatedAt": "2023-09-26T04:59:51.058Z" + }, + { + "id": "6ad412e2-170b-42a5-895f-f841ec47e3c5", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "0cc48002-fd62-4b80-a02a-a04329030e7d", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.063Z", + "updatedAt": "2023-09-27T06:59:36.470Z" + }, + { + "id": "907f19fe-d074-4cd7-adb5-5cb3353d855c", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "4175f457-72d6-4838-b23a-895c9f1479cf", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.068Z", + "updatedAt": "2023-09-26T04:59:51.068Z" + }, + { + "id": "d85fe433-175b-42b6-afda-4eacc1398a22", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "b3f1ca23-5dc4-441a-9ccf-608db6d746e7", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "78b3f9e0-8124-4d37-8da3-788d35f9f4d3", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "d3181e60-88eb-4ed2-8234-877abb1cca21", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "3e8cbe50-7a5b-44ba-b366-b80ffee166ff", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "fc2da525-f539-454c-824a-8fda6127e9e0", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "2358c3c3-e4d1-400f-9069-20186bbdb0a7", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "0899c00c-8a3b-4d41-937c-1925c8958297", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "e05b1995-20c8-4f02-a62c-bb2478baf4ef", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "65c6b204-5842-490b-9ec6-81e52146ab69", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "08f74263-9282-4214-bb80-fc71196cd104", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "43b65b50-ddd3-4cdc-8579-b55a404717be", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "2e84b8b5-e7ae-41ca-86bb-4a0d75e3cdbd", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "931c6a61-e93e-42f8-88d0-3069772a01e4", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "035e7958-ac6f-4873-9df1-8c487eeb4d8f", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "edab30b9-76cf-46b8-818f-1f34ef222a77", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "df31bda5-d452-4446-adb6-ae4292cfd6c9", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "209858f9-b486-4105-ab34-75efb3b3faed", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "aeba310e-6507-4d43-82eb-ba8861067b36", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "230ba931-70ab-44e2-b44a-2f60c96c5361", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "e3415f04-a642-4505-b50c-7ea030a8eaeb", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "f874078b-2a8a-4fe8-b7f8-fdefa9c8beaf", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.905Z", + "updatedAt": "2023-09-27T16:45:57.905Z" + }, + { + "id": "2bfb1a7c-823e-4359-b049-4a61db34b911", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "5bb80934-9d75-49cc-a9a3-3e8bb3b90c34", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "7078020a-7967-4597-82fc-a31f0b1cf21e", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "991135d2-7671-45ed-b316-63f03b7a34f0", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.615Z" + }, + { + "id": "a8648171-928a-48ef-ac7c-2d1cb8bbae6d", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7fd0ea56-a4c5-421c-ac04-c707fd30037a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.609Z" + }, + { + "id": "d3532cce-f05c-4157-b482-d4632ef19c0c", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "35.193.152.84", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "72f1b57e-ed9d-4eb1-b628-d35d0d6bec78", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-10-03T13:27:33.903Z" + }, + { + "id": "bf2ce691-b6e1-442b-a649-793d30a9db60", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c4cb2ddd-2504-4457-971e-18f96940393f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.806Z" + }, + { + "id": "a765cdaa-0387-461c-bdaa-63b5353028c0", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "8b910d98-de4b-4e9a-bd11-c9004aa81e48", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.805Z" + }, + { + "id": "5751c539-28cc-4065-b4f2-f321bbe3ee23", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e97c34c1-13bc-4b5f-b240-cc7acc59541a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.799Z" + }, + { + "id": "512396b8-88c7-4964-a57d-0236373d14fd", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c3673de1-1377-4752-b9a9-743ac1ec76a5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.642Z" + }, + { + "id": "5ea174ed-1189-4646-b93a-05e4ced753b9", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "d9ad9526-6249-4615-b7c6-e0e0f6425658", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:36:58.100Z" + }, + { + "id": "7ab8dd61-1478-4003-b7e3-c9546edcd991", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1ad53f8b-ec0e-4492-ac40-24185178d044", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.650Z" + }, + { + "id": "34d29e8e-3494-4281-9a91-b7f6806002c0", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "5c4588ab-8993-455a-b005-6554c3873b8c", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "a2d691b8-0378-4f0a-ade6-f24c6158578d", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "159e5e0b-3e3d-4306-a6b2-ff9b052172c4", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "f68516ae-87a5-421a-b396-5e7510c16763", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "56da9e7f-bed6-47de-ac08-c0d733f93b5d", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "412ce914-c49e-4a81-bcfe-51077d6d17a2", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "227b7d0e-bf04-4481-b137-ad1b23f9ac77", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "bc62f0c9-0d44-47ac-a25f-41459e0d5fc4", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "cbd1819f-a223-4207-bea6-d6576f57ea2c", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "007bd34a-9123-4936-933c-2433c6edd899", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "a4a1cf81-f577-423e-9544-4ff7796cb289", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "d5073421-b5c5-47b5-b4bc-3cad17267c81", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "ac8cc42f-2ada-41f7-b93f-01c64fb3bde6", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "9b773b6b-ea5b-4b4b-b01e-b4dc90142c94", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "85af5670-1dbe-4e33-9e71-38e3d63f785f", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "323825dd-363e-4e0d-93ff-b7c26ebff3a1", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "51c5eee4-0af2-4c2b-b711-970b5ae74485", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "86a9a4fd-bf05-4770-be53-b8cf2d00c9e6", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "a3d42ef6-7f48-45ad-90a6-c7980d48c12a", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "14b82dee-24eb-4a94-8559-0d9ed6b63d77", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "703288c6-0a61-4744-a16e-687aea9f9a4c", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "76971c88-7f60-4297-a6c9-e3666c7b6758", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "b9220430-0410-4bc6-bfed-605f0f92a2ea", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "d0692d6c-6b12-4e7c-9cce-64039fcb5ca6", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "bb66eed0-6019-43cf-bb27-a3db15ebee93", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "feec231b-a32a-4dba-9ce3-41fc172280d2", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "a14b567d-5d54-49be-89b4-91b2738c1ca2", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "e4213486-4c50-4874-b98b-299b7f94ab65", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "b5583a48-33ea-48bd-83b5-21ce845a0875", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "7f90955a-1301-4773-b110-5970fc71038c", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "872c8f9a-636a-4e22-8386-a544ad4020b9", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.617Z", + "updatedAt": "2023-10-10T09:21:50.617Z" + }, + { + "id": "79a2ecaf-ad5a-4aab-a44c-cb2bc99a8835", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "7fb74b90-480f-4da5-9a34-f7087f8483ab", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.622Z", + "updatedAt": "2023-10-10T09:21:50.622Z" + }, + { + "id": "babdb5a2-4dc2-4a39-909e-1e0b547ca030", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "c896ddb1-70e1-4b57-9739-b7e4069e1262", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.626Z", + "updatedAt": "2023-10-10T09:21:50.626Z" + }, + { + "id": "34f7f3f9-cab0-4e65-bc88-ed4a2e7fbfa1", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "6f2b7870-2f24-435f-badc-eba159c0edc0", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "6ba822d7-b917-49e9-a6ff-9a042fc87c08", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "000997b8-464f-40e8-8f3a-4510ae73fbfe", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "cb19358c-f4b9-4ae0-9ff1-ab5f037f4e7a", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "c67db9b9-9cd7-4daf-9bdd-513229ea2ae8", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "26cd77c6-6387-48ca-92b6-f943a90da690", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "54208746-afd8-4d2d-9fe1-5d2f064c8a07", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "44130f59-3942-4b23-b117-13800ac78881", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "18344317-96be-41f3-a4ce-6f769f104323", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "013ef1c8-af8a-4019-b68f-f9a1d2ef7e64", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "66bf88db-3432-455c-9a5e-d5b59378858f", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "78812b07-46d1-42f2-828d-51d0a1546358", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "ea038e59-5a5e-40b6-b09a-2356ee1a5e21", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "998dc168-7f06-45fe-890e-753fe2788326", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + } + ], + "schemaDetails": { + "multiPages": true, + "multiEnv": true, + "globalDataSources": true + } + } + } + } + ], + "tooljet_version": "2.19.2-ee2.7.0-cloud2.0.9" +} diff --git a/server/templates/customer-ticketing-form/manifest.json b/server/templates/customer-ticketing-form/manifest.json new file mode 100644 index 0000000000..8a078c38c6 --- /dev/null +++ b/server/templates/customer-ticketing-form/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "Customer ticketing form", + "description": "The Customer Ticketing Form optimizes support ticket management, seamlessly gathering customer info and tracking ticket progress with deep integration into Customer Support Admin.", + "widgets": ["Table", "Chart"], + "sources": [ + { + "name": "Tooljet Database", + "id": "tooljetdb" + } + ], + "id": "customer-ticketing-form", + "category": "operations" +} diff --git a/server/templates/inventory-management/definition.json b/server/templates/inventory-management/definition.json new file mode 100644 index 0000000000..835a4fab01 --- /dev/null +++ b/server/templates/inventory-management/definition.json @@ -0,0 +1,39620 @@ +{ + "tooljet_database": [ + { + "id": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c", + "table_name": "inventory_management", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"8e3161de-ffa9-4502-9f4c-6d06c0f5884c_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "product_name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "quantity", + "data_type": "integer", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "status", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "price", + "data_type": "double precision", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 53, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "description", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "category", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "is_active", + "data_type": "boolean", + "column_default": "true", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + } + ], + "app": [ + { + "definition": { + "appV2": { + "id": "814c14d7-2c8c-4e30-9013-63dfcfe16d77", + "type": "front-end", + "name": "Inventory management", + "slug": "814c14d7-2c8c-4e30-9013-63dfcfe16d77", + "isPublic": false, + "isMaintenanceOn": false, + "icon": "layers", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "currentVersionId": null, + "userId": "ccf51822-9d82-4d82-81dd-22df9f3cfcfc", + "createdAt": "2023-09-19T08:22:32.225Z", + "updatedAt": "2023-10-10T11:04:48.918Z", + "editingVersion": { + "id": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "27be7952-16b7-4dd2-922b-14670240551d", + "pages": { + "27be7952-16b7-4dd2-922b-14670240551d": { + "name": "Product Inventory", + "handle": "Product Inventory", + "components": { + "bda85f11-39c0-40d3-ba35-bfd0211fea6f": { + "id": "bda85f11-39c0-40d3-ba35-bfd0211fea6f", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onSearch", + "actionId": "run-query", + "message": "Hello World!", + "alertType": "info", + "queryId": "7345388e-eda4-494d-8a44-fac9d0e11f49", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.tooljetdbGetProducts.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{20}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true + }, + "columns": { + "value": [ + { + "name": "# id", + "id": "78c599af-628d-41a5-8da0-02f40f4b0cfd", + "columnType": "number", + "key": "id" + }, + { + "id": "9dd40d5e-36f2-4257-8fc0-9fec788fe025", + "name": "product name", + "key": "product_name", + "columnType": "string", + "autogenerated": true + }, + { + "id": "6fcb6fac-ad92-4a9d-8473-f47818129a85", + "name": "quantity", + "key": "quantity", + "columnType": "number", + "autogenerated": true, + "isEditable": "{{false}}" + }, + { + "id": "8f97e3b2-69d2-44c4-b301-05f6f6c0afff", + "name": "price ($)", + "key": "price", + "columnType": "number", + "autogenerated": true + }, + { + "id": "935cf13c-6101-4fae-a9ef-d4bb6a396fb2", + "name": "status", + "key": "status", + "columnType": "string", + "autogenerated": true + }, + { + "id": "68977f9a-fb0a-4f7b-85f2-cc5b11a2a0cb", + "name": "category", + "key": "category", + "columnType": "string", + "autogenerated": true + }, + { + "id": "9de6c6a2-512b-45e8-8c80-d2d8271976af", + "name": "description", + "key": "description", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 39, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 143, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 370, + "d7ef4587-d597-44fe-a09f-1e8a5afe7ebd": 161, + "80a7c021-1406-495f-98d2-c8b1789748d6": 169, + "e7828dc4-90f6-4a60-aadb-58356278dff9": 70, + "aa56b72c-5246-47a7-800d-b19a7208970a": 281, + "01397da4-b41e-4540-aec5-440e70fd38d5": 381, + "9de6c6a2-512b-45e8-8c80-d2d8271976af": 448, + "4193a446-2519-454c-9ade-d468ce8e0acb": 89, + "6fcb6fac-ad92-4a9d-8473-f47818129a85": 97, + "935cf13c-6101-4fae-a9ef-d4bb6a396fb2": 117, + "8f97e3b2-69d2-44c4-b301-05f6f6c0afff": 89, + "78c599af-628d-41a5-8da0-02f40f4b0cfd": 35, + "68977f9a-fb0a-4f7b-85f2-cc5b11a2a0cb": 137, + "leftActions": 67, + "rightActions": 137, + "9dd40d5e-36f2-4257-8fc0-9fec788fe025": 169 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Edit", + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "77c87ef4-529f-47fa-831a-05c96bb56518" + } + ], + "position": "right", + "textColor": "#5079ffff", + "backgroundColor": "#5079ff1a" + }, + { + "name": "Action1", + "buttonText": "Remove", + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c661499a-48fd-4c95-ace8-0a0b8af9d350" + } + ], + "position": "right", + "textColor": "#d0021bff", + "backgroundColor": "#d0021b1a" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "email", + "Assigned to", + "Quantity", + "Status", + "product description", + "id", + "is_active" + ] + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "serverSideSearch": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + } + ] + }, + "layouts": { + "desktop": { + "top": 239.9999122619629, + "left": 2.3255818850376775, + "width": 40.99999999999999, + "height": 610 + } + } + }, + "e70226f2-0985-4145-9fb4-d8355258b0c5": { + "id": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4a90e2ff", + "fxActive": false + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add a Product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add a Product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "490px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal1", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 400 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 920.0000610351562, + "left": 4.651166952654379, + "width": 4, + "height": 30 + } + } + }, + "5d0ed3c3-5679-4ad7-9282-8910827889fa": { + "id": "5d0ed3c3-5679-4ad7-9282-8910827889fa", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "0bed2d35-61e3-4a6e-ab63-e22a0b2fc899", + "queryName": "tooljetdbAddProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{components.textinput4.value.length < 1 || components.numberinput1.value == 0 || components.numberinput2.value == 0 || components.dropdown1.value == undefined || components.dropdown2.value == undefined || components.textarea2.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add product" + }, + "loadingState": { + "value": "{{queries.tooljetdbAddProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420.00006103515625, + "left": 79.06980042535031, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "ba1e39b1-62cd-4c2a-953a-3ff1c96feaac": { + "id": "ba1e39b1-62cd-4c2a-953a-3ff1c96feaac", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "e70226f2-0985-4145-9fb4-d8355258b0c5" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button3", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420.0000305175781, + "left": 65.08360450313526, + "width": 5.026685393258427, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "ac425c6b-770e-4d8f-ba4b-1161ce72f665": { + "id": "ac425c6b-770e-4d8f-ba4b-1161ce72f665", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651146748971732, + "width": 6, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "3085d2cc-d42a-4fe5-8bf9-da4baefa2048": { + "id": "3085d2cc-d42a-4fe5-8bf9-da4baefa2048", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651157506611227, + "width": 15, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "2c8fbdb8-36a9-48ed-981d-044086f48d6f": { + "id": "2c8fbdb8-36a9-48ed-981d-044086f48d6f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.162797507362264, + "width": 1, + "height": 100 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "31b32887-f5ce-43a0-a439-3547dd1f8775": { + "id": "31b32887-f5ce-43a0-a439-3547dd1f8775", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price ($)" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 199.9999771118164, + "left": 4.651161007056952, + "width": 6, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "429f6f5a-1962-493c-9fc0-e5abd73df999": { + "id": "429f6f5a-1962-493c-9fc0-e5abd73df999", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 139.99999618530273, + "left": 55.81394566271558, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "1a8ac421-59f2-49b9-b5c2-ea8caa3e6fe0": { + "id": "1a8ac421-59f2-49b9-b5c2-ea8caa3e6fe0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 259.99999618530273, + "left": 4.651163937000746, + "width": 14.943668648140722, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "3362f3ca-5134-4e19-8f06-7b27d1fd942e": { + "id": "3362f3ca-5134-4e19-8f06-7b27d1fd942e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter product description..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea2", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 299.99997901916504, + "left": 4.651139300533316, + "width": 39.00000000000001, + "height": 100 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "e5409124-b033-4c2f-91d1-6dba1a938395": { + "id": "e5409124-b033-4c2f-91d1-6dba1a938395", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 4.6511809162900555, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "5f3ead84-8a42-40b3-b3e6-46ec994a7594": { + "id": "5f3ead84-8a42-40b3-b3e6-46ec994a7594", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter product name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput4", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80.00000762939453, + "left": 20.930223155150934, + "width": 32, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "64931418-c1f1-4a80-b0d6-989ed7e7d7b3": { + "id": "64931418-c1f1-4a80-b0d6-989ed7e7d7b3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Category" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 55.81395720035743, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "0d0efc13-ae0e-4e1f-8d90-c8c508487fef": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{['in_stock', 'yet_to_receive']}}" + }, + "display_values": { + "value": "{{['In stock', 'Yet to receive']}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "layouts": { + "desktop": { + "top": 140.00000762939453, + "left": 67.44186885999612, + "width": 12.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "5caec9ab-5eea-42be-bfb0-4a3783b388e9": { + "id": "5caec9ab-5eea-42be-bfb0-4a3783b388e9", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{[\"apparel\",\"appliances\",\"beverage\",\"electronics\",\"food\",\"furniture\",\"software\"]}}" + }, + "display_values": { + "value": "{{[\"Apparel\",\"Appliances\",\"Beverage\",\"Electronics\",\"Food\",\"Furniture\",\"Software\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select category..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 67.4418446186934, + "width": 12.000000000000002, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "5086fc5a-b6db-4b6d-b3b0-fd362c7a8bd2": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{0}}" + }, + "maxValue": { + "value": "1000" + }, + "minValue": { + "value": "1" + }, + "placeholder": { + "value": "{{components.numberinput1.value}}" + }, + "decimalPlaces": { + "value": "{{0}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput1", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "layouts": { + "desktop": { + "top": 140.00000762939453, + "left": 20.930226913180842, + "width": 12, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "5dcf6696-566a-44e6-a65d-1a5f6e9a453f": { + "id": "5dcf6696-566a-44e6-a65d-1a5f6e9a453f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "0" + }, + "maxValue": { + "value": "999999" + }, + "minValue": { + "value": "0.50" + }, + "placeholder": { + "value": "{{components.numberinput2.value}}" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput2", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 200.00000762939453, + "left": 20.93028135805831, + "width": 12, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "cca6303c-ef16-4260-9372-4e7d9415c830": { + "id": "cca6303c-ef16-4260-9372-4e7d9415c830", + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.navbarBg}}", + "fxActive": true + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 1px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 19.999927520751953, + "left": 2.3255818809714563, + "width": 41, + "height": 200 + } + } + }, + "a5593c55-f9b1-41e7-8e19-ff2655cf2e0e": { + "id": "a5593c55-f9b1-41e7-8e19-ff2655cf2e0e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "{{queries.colorPalette.data.navbarText}}", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": "{{1}}" + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R
N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text34", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30.000030517578125, + "left": 2.325586532820495, + "width": 2.999999999999999, + "height": 50 + } + }, + "parent": "cca6303c-ef16-4260-9372-4e7d9415c830" + }, + "ad2d719a-06ef-4eda-9f11-8b2577ae8656": { + "id": "ad2d719a-06ef-4eda-9f11-8b2577ae8656", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "{{queries.colorPalette.data.navbarText}}", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Inventory Management" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text35", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10.000022888183594, + "left": 72.09301773246553, + "width": 10.999999999999998, + "height": 50 + } + }, + "parent": "cca6303c-ef16-4260-9372-4e7d9415c830" + }, + "c48605fb-d070-430a-acd6-b53c74a91542": { + "id": "c48605fb-d070-430a-acd6-b53c74a91542", + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a", + "fxActive": false + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container4", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 69.99997329711914, + "left": 53.48836566428588, + "width": 19, + "height": 100 + } + }, + "parent": "cca6303c-ef16-4260-9372-4e7d9415c830" + }, + "e8993a2f-f890-4ea1-b3f5-c73b5d37d25e": { + "id": "e8993a2f-f890-4ea1-b3f5-c73b5d37d25e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#ffffffff", + "fxActive": false + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Qty in total" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text36", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 2.3255595483197293, + "width": 9, + "height": 30 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "f7378bb7-fc93-401d-b607-9b85d7597e58": { + "id": "f7378bb7-fc93-401d-b607-9b85d7597e58", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#ffffffff", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInTotal ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text37", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00006103515625, + "left": 2.325598714555765, + "width": 9, + "height": 40 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "e1486c23-dbb0-45dd-8c10-1e2ed444268a": { + "id": "e1486c23-dbb0-45dd-8c10-1e2ed444268a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#e1ffbcff", + "fxActive": false + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Qty in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text38", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10.00006103515625, + "left": 27.906983557818467, + "width": 9, + "height": 30 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "d12b2033-5ea0-49c8-9c77-d3afff7e98fe": { + "id": "d12b2033-5ea0-49c8-9c77-d3afff7e98fe", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#ffe4b1ff", + "fxActive": false + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Low in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text39", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 53.488367883212355, + "width": 9, + "height": 30 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "b968e82f-6b90-4aa0-811d-99822f468432": { + "id": "b968e82f-6b90-4aa0-811d-99822f468432", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#e1ffbcff", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text40", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.000030517578125, + "left": 27.90696726525265, + "width": 9, + "height": 40 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "9981da2a-e73b-4885-94f3-de13ea365a41": { + "id": "9981da2a-e73b-4885-94f3-de13ea365a41", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#FFE4B1", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.lowInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text41", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00006103515625, + "left": 53.488374549642096, + "width": 9, + "height": 40 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "7eec1073-d3c7-4c76-a658-875f5193660a": { + "id": "7eec1073-d3c7-4c76-a658-875f5193660a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#fd9eaaff", + "fxActive": false + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Out of stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text42", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 79.06977937741273, + "width": 8, + "height": 30 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "00ba0f12-bc7d-4f7d-82be-68098d4176e3": { + "id": "00ba0f12-bc7d-4f7d-82be-68098d4176e3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#fc9faaff", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.outOfStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text43", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00006103515625, + "left": 79.0697761556572, + "width": 8, + "height": 40 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "10ae148a-73d0-4704-afe0-509701496a57": { + "id": "10ae148a-73d0-4704-afe0-509701496a57", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "e70226f2-0985-4145-9fb4-d8355258b0c5" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.navbarBtnBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.navbarBtnText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.navbarBtnText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.navbarBtnBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add new product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button6", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 130.00004959106445, + "left": 2.3255673782109563, + "width": 5, + "height": 40 + } + }, + "parent": "cca6303c-ef16-4260-9372-4e7d9415c830" + }, + "c661499a-48fd-4c95-ace8-0a0b8af9d350": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4D72FA" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Remove product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Launch Modal" + }, + "size": { + "value": "sm" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "180px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal3", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 919.9999504089355, + "left": 27.906962694408737, + "width": 4, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "683d6ea7-919b-45ae-ac4b-bd1db7f7392a": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{15}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Warning: This process is irreversible.
\nAre you sure you want to remove the product?" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "c661499a-48fd-4c95-ace8-0a0b8af9d350", + "layouts": { + "desktop": { + "top": 19.999996185302734, + "left": 4.651163317075356, + "width": 39, + "height": 70 + } + }, + "withDefaultChildren": false + }, + "16d754e1-5c47-48ca-bebb-2c05305b2381": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "1fd7199d-3feb-4c93-a2b6-070a77c075eb", + "queryName": "tooljetdbRemoveProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Remove" + }, + "loadingState": { + "value": "{{queries.tooljetdbRemoveProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button7", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "c661499a-48fd-4c95-ace8-0a0b8af9d350", + "layouts": { + "desktop": { + "top": 100, + "left": 53.4883593562437, + "width": 10.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "20479ec7-d720-4f70-be3a-79b580a6702c": { + "id": "20479ec7-d720-4f70-be3a-79b580a6702c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c661499a-48fd-4c95-ace8-0a0b8af9d350" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button8", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 99.99995803833008, + "left": 23.255806746040598, + "width": 10.000000000000002, + "height": 40 + } + }, + "parent": "c661499a-48fd-4c95-ace8-0a0b8af9d350" + }, + "77c87ef4-529f-47fa-831a-05c96bb56518": { + "id": "77c87ef4-529f-47fa-831a-05c96bb56518", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4a90e2ff", + "fxActive": false + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Edit Product #{{components.table1.selectedRow.id}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add a Product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "490px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal2", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 400 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 920.0000610351562, + "left": 16.279071708163297, + "width": 4, + "height": 30 + } + } + }, + "580ea5ee-1870-4b17-9e90-a470164586a5": { + "id": "580ea5ee-1870-4b17-9e90-a470164586a5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "65d4cafc-537f-4874-8153-393f4108c0cb", + "queryName": "tooljetdbUpdateProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{components.textinput2.value.length < 1 || components.numberinput5.value < 0 || components.numberinput6.value == 0 || components.dropdown5.value == undefined || components.dropdown6.value == undefined || components.textarea3.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Save changes" + }, + "loadingState": { + "value": "{{queries.tooljetdbUpdateProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button9", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420.0000057220459, + "left": 79.06978899941035, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "b2ea1cba-58bb-4fd6-b6de-cb6f032bf5eb": { + "id": "b2ea1cba-58bb-4fd6-b6de-cb6f032bf5eb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "77c87ef4-529f-47fa-831a-05c96bb56518" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button10", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 419.99999237060547, + "left": 65.08360269503015, + "width": 5.026685393258427, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "e34c4eed-2bc9-42d2-85d4-02ba4ea28f38": { + "id": "e34c4eed-2bc9-42d2-85d4-02ba4ea28f38", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text25", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651161786086923, + "width": 7, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "19bce438-a2ca-41af-8055-46cfb3933872": { + "id": "19bce438-a2ca-41af-8055-46cfb3933872", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651161793912395, + "width": 15, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "0065dcc9-35f5-49b5-bd6c-e6ed7a4af108": { + "id": "0065dcc9-35f5-49b5-bd6c-e6ed7a4af108", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider3", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.162797507362264, + "width": 1, + "height": 100 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "b50551e1-ded0-4f02-b432-9cf7928b6749": { + "id": "b50551e1-ded0-4f02-b432-9cf7928b6749", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price ($)" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 4.651155125512338, + "width": 6, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "1f67445b-4161-4ee3-94d9-4f1bdb10f792": { + "id": "1f67445b-4161-4ee3-94d9-4f1bdb10f792", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 55.81395137164659, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "ff78a251-d9be-44c1-a67b-fd3cf8e00247": { + "id": "ff78a251-d9be-44c1-a67b-fd3cf8e00247", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 260.0000114440918, + "left": 4.651164969781484, + "width": 14.943668648140722, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "90cdac46-ceef-4608-a69a-3886fd90f937": { + "id": "90cdac46-ceef-4608-a69a-3886fd90f937", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.description}}" + }, + "placeholder": { + "value": "Enter product description..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea3", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 300.0000476837158, + "left": 4.6511335594497325, + "width": 39.00000000000001, + "height": 100 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "e24173bd-0905-471a-b0d3-c3eff137b02d": { + "id": "e24173bd-0905-471a-b0d3-c3eff137b02d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 4.651160213588963, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "988267b6-4523-4a8d-82db-ceae70601f42": { + "id": "988267b6-4523-4a8d-82db-ceae70601f42", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.product_name}}" + }, + "placeholder": { + "value": "Enter product name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 79.99998474121094, + "left": 20.930219677504155, + "width": 32, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "37e56ce8-cdaa-40b6-a8ed-6a9714fc4d87": { + "id": "37e56ce8-cdaa-40b6-a8ed-6a9714fc4d87", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Category" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 55.813963751906705, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "7ea12940-680e-4ac1-b83b-8200aa3e4c42": { + "id": "7ea12940-680e-4ac1-b83b-8200aa3e4c42", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{components.numberinput5.value > 0 ? components.table1.selectedRow.status : \"out_of_stock\"}}" + }, + "values": { + "value": "{{components.numberinput5.value > 0 ? [\"in_stock\", \"yet_to_receive\"] : [\"out_of_stock\"]}}" + }, + "display_values": { + "value": "{{components.numberinput5.value > 0 ? [\"In stock\", \"Yet to receive\"] : [\"Out of stock\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown5", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140.00002098083496, + "left": 67.44186541127978, + "width": 12.000000000000002, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "da9c2558-72a6-40de-8316-280e94ab09ff": { + "id": "da9c2558-72a6-40de-8316-280e94ab09ff", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{components.table1.selectedRow.category}}" + }, + "values": { + "value": "{{[\"apparel\",\"appliances\",\"beverage\",\"electronics\",\"food\",\"furniture\",\"software\"]}}" + }, + "display_values": { + "value": "{{[\"Apparel\",\"Appliances\",\"Beverage\",\"Electronics\",\"Food\",\"Furniture\",\"Software\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select category..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown6", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 199.99999046325684, + "left": 67.44184492717345, + "width": 12.000000000000002, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "9c2a1cfd-ce9c-4e4b-b573-9336a468c5a3": { + "id": "9c2a1cfd-ce9c-4e4b-b573-9336a468c5a3", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.quantity}}" + }, + "maxValue": { + "value": "1000" + }, + "minValue": { + "value": "0" + }, + "placeholder": { + "value": "{{components.numberinput5.value}}" + }, + "decimalPlaces": { + "value": "{{0}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput5", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 139.9999942779541, + "left": 20.930229033515786, + "width": 12, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "52c88014-8084-41e4-bbad-069fcbf4c89c": { + "id": "52c88014-8084-41e4-bbad-069fcbf4c89c", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.price}}" + }, + "maxValue": { + "value": "999999" + }, + "minValue": { + "value": "0.50" + }, + "placeholder": { + "value": "{{components.numberinput6.value}}" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput6", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 200, + "left": 20.930284607776873, + "width": 12, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + } + }, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "7345388e-eda4-494d-8a44-fac9d0e11f49", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ] + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "100000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": "1000", + "canvasBackgroundColor": "#ffffff", + "backgroundFxQuery": "{{queries.colorPalette.data[\"canvasBg_\"+globals.theme.name]}}" + } + }, + "appId": "814c14d7-2c8c-4e30-9013-63dfcfe16d77", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-09-19T08:22:32.234Z", + "updatedAt": "2023-10-10T13:37:10.865Z" + }, + "dataQueries": [ + { + "id": "1ea07b28-2161-4030-b6cb-3b10c0f28999", + "name": "getProductStats", + "options": { + "code": "totalQty = 0;\ninStockQty = 0;\nlowInStock = 0;\noutOfStock = 0;\nyetToReceive = 0;\n\nqueries.tooljetdbGetProducts.data.forEach((product) => {\n totalQty += product.quantity;\n inStockQty += product.status == \"in_stock\" ? product.quantity : 0;\n yetToReceive += product.status == \"yet_to_receive\" ? product.quantity : 0;\n lowInStock += product.quantity <= 10 && product.quantity > 0 ? 1 : 0;\n outOfStock += product.quantity == 0 ? 1 : 0;\n});\n\nreturn {\n quantityInTotal: totalQty,\n quantityInStock: inStockQty,\n quantityYetToReceive: yetToReceive,\n lowInStock: lowInStock,\n outOfStock: outOfStock,\n};", + "hasParamSupport": true, + "parameters": [] + }, + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "createdAt": "2023-09-19T08:22:32.225Z", + "updatedAt": "2023-09-19T08:22:32.225Z" + }, + { + "id": "0bed2d35-61e3-4a6e-ab63-e22a0b2fc899", + "name": "tooljetdbAddProduct", + "options": { + "operation": "create_row", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_products", + "list_rows": {}, + "create_row": { + "0": { + "column": "product_name", + "value": "{{components.textinput4.value}}" + }, + "1": { + "column": "quantity", + "value": "{{components.numberinput1.value}}" + }, + "2": { + "column": "status", + "value": "{{components.dropdown1.value}}" + }, + "3": { + "column": "price", + "value": "{{components.numberinput2.value}}" + }, + "4": { + "column": "category", + "value": "{{components.dropdown2.value}}" + }, + "5": { + "column": "description", + "value": "{{components.textarea2.value}}" + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Product added successfully", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "discardChanges", + "componentId": "bda85f11-39c0-40d3-ba35-bfd0211fea6f", + "componentSpecificActionParams": [] + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "7345388e-eda4-494d-8a44-fac9d0e11f49", + "queryName": "tooljetdbGetProducts", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to add product! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c", + "organization_id": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "join_table": { + "joins": [ + { + "id": 1696945053501, + "conditions": { + "operator": "AND", + "conditionsList": [ + { + "operator": "=", + "leftField": { + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + } + } + ] + }, + "joinType": "INNER" + } + ], + "from": { + "name": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c", + "type": "Table" + }, + "fields": [ + { + "name": "id", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "product_name", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "quantity", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "status", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "price", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "description", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "category", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "is_active", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + } + ] + } + }, + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "createdAt": "2023-09-19T08:22:32.225Z", + "updatedAt": "2023-10-10T13:37:34.583Z" + }, + { + "id": "65d4cafc-537f-4874-8153-393f4108c0cb", + "name": "tooljetdbUpdateProduct", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_products", + "list_rows": {}, + "update_rows": { + "columns": { + "0": { + "column": "product_name", + "value": "{{components.textinput2.value}}" + }, + "1": { + "column": "quantity", + "value": "{{components.numberinput5.value}}" + }, + "2": { + "column": "status", + "value": "{{components.dropdown5.value}}" + }, + "3": { + "column": "price", + "value": "{{components.numberinput6.value}}" + }, + "4": { + "column": "category", + "value": "{{components.dropdown6.value}}" + }, + "5": { + "column": "description", + "value": "{{components.textarea3.value}}" + } + }, + "where_filters": { + "1": { + "column": "id", + "operator": "eq", + "value": "{{components.table1.selectedRow.id}}", + "id": "1" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Successfully updated product details.", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "7345388e-eda4-494d-8a44-fac9d0e11f49", + "queryName": "tooljetdbGetProducts", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to update product details! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c", + "organization_id": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "join_table": { + "joins": [ + { + "id": 1696945109288, + "conditions": { + "operator": "AND", + "conditionsList": [ + { + "operator": "=", + "leftField": { + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + } + } + ] + }, + "joinType": "INNER" + } + ], + "from": { + "name": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c", + "type": "Table" + }, + "fields": [ + { + "name": "id", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "product_name", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "quantity", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "status", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "price", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "description", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "category", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "is_active", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + } + ] + } + }, + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "createdAt": "2023-09-19T08:22:32.225Z", + "updatedAt": "2023-10-10T13:38:30.597Z" + }, + { + "id": "7345388e-eda4-494d-8a44-fac9d0e11f49", + "name": "tooljetdbGetProducts", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_products", + "list_rows": { + "where_filters": { + "3": { + "column": "is_active", + "operator": "eq", + "value": "true", + "id": "3" + }, + "12": { + "column": "product_name", + "operator": "ilike", + "value": "{{components.table1.searchText != \"\" ? \"%\" + components.table1.searchText + \"%\" : \"\"}}", + "id": "12" + } + }, + "order_filters": { + "1": { + "column": "id", + "order": "desc", + "id": "1" + } + } + }, + "runOnPageLoad": false, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "1ea07b28-2161-4030-b6cb-3b10c0f28999", + "queryName": "getProductStats", + "parameters": {} + } + ], + "table_id": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c", + "organization_id": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "join_table": { + "joins": [ + { + "id": 1696945129546, + "conditions": { + "operator": "AND", + "conditionsList": [ + { + "operator": "=", + "leftField": { + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + } + } + ] + }, + "joinType": "INNER" + } + ], + "from": { + "name": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c", + "type": "Table" + }, + "fields": [ + { + "name": "id", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "product_name", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "quantity", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "status", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "price", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "description", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "category", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "is_active", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + } + ] + } + }, + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "createdAt": "2023-09-19T08:22:32.225Z", + "updatedAt": "2023-10-10T13:39:24.289Z" + }, + { + "id": "aa9c3846-ed11-4849-8916-86178828924e", + "name": "colorPalette", + "options": { + "code": "colorDirectory = {\n btnPrimaryBg: \"#5079ffff\",\n btnPrimaryBorder: \"#ffffff00\",\n btnPrimaryText: \"#ffffffff\",\n btnSecondaryBg: \"#ffffffb3\",\n btnSecondaryBorder: \"#5079ffff\",\n btnSecondaryText: \"#5079ffff\",\n canvasBg_light: \"#ffffff\",\n canvasBg_dark: \"#333333\",\n main: \"#3e63ddff\",\n modalBodyBg: \"#ffffff00\",\n modalHeaderBg: \"#3e63ddff\",\n modalHeaderText: \"#ffffffff\",\n navbarBg: \"#3e63ddff\",\n navbarBtnBg: \"#ffffff1a\",\n navbarBtnBorder: \"#ffffffff\",\n navbarBtnText: \"#ffffffff\",\n navbarText: \"#ffffffff\",\n tabHighlight: \"#3e63ddff\",\n};\n\nreturn colorDirectory;", + "hasParamSupport": true, + "parameters": [], + "runOnPageLoad": true + }, + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "createdAt": "2023-09-19T09:52:05.729Z", + "updatedAt": "2023-10-10T11:02:04.353Z" + }, + { + "id": "1fd7199d-3feb-4c93-a2b6-070a77c075eb", + "name": "tooljetdbRemoveProduct", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_id": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c", + "list_rows": {}, + "update_rows": { + "columns": { + "2": { + "column": "is_active", + "value": "false" + } + }, + "where_filters": { + "1": { + "column": "id", + "operator": "eq", + "value": "{{components.table1.selectedRow.id}}", + "id": "1" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c661499a-48fd-4c95-ace8-0a0b8af9d350" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Product deleted successfully.", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "7345388e-eda4-494d-8a44-fac9d0e11f49", + "queryName": "tooljetdbGetProducts", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to remove the product! Please check and try again.", + "alertType": "warning" + } + ], + "organization_id": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "join_table": { + "joins": [ + { + "id": 1696945089990, + "conditions": { + "operator": "AND", + "conditionsList": [ + { + "operator": "=", + "leftField": { + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + } + } + ] + }, + "joinType": "INNER" + } + ], + "from": { + "name": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c", + "type": "Table" + }, + "fields": [ + { + "name": "id", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "product_name", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "quantity", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "status", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "price", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "description", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "category", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + }, + { + "name": "is_active", + "table": "8e3161de-ffa9-4502-9f4c-6d06c0f5884c" + } + ] + } + }, + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "createdAt": "2023-09-20T20:44:16.997Z", + "updatedAt": "2023-10-10T13:38:11.679Z" + } + ], + "dataSources": [ + { + "id": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "name": "restapidefault", + "kind": "restapi", + "type": "static", + "pluginId": null, + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-19T08:22:32.309Z", + "updatedAt": "2023-09-19T08:22:32.309Z" + }, + { + "id": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "name": "runjsdefault", + "kind": "runjs", + "type": "static", + "pluginId": null, + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-19T08:22:32.319Z", + "updatedAt": "2023-09-19T08:22:32.319Z" + }, + { + "id": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "name": "runpydefault", + "kind": "runpy", + "type": "static", + "pluginId": null, + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-19T08:22:32.326Z", + "updatedAt": "2023-09-19T08:22:32.326Z" + }, + { + "id": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "name": "tooljetdbdefault", + "kind": "tooljetdb", + "type": "static", + "pluginId": null, + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-19T08:22:32.332Z", + "updatedAt": "2023-09-19T08:22:32.332Z" + }, + { + "id": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "name": "workflowsdefault", + "kind": "workflows", + "type": "static", + "pluginId": null, + "appVersionId": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-19T08:22:32.338Z", + "updatedAt": "2023-09-19T08:22:32.338Z" + } + ], + "appVersions": [ + { + "id": "96949e73-05ba-4a42-aa7b-6c8772f7a78e", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "27be7952-16b7-4dd2-922b-14670240551d", + "pages": { + "27be7952-16b7-4dd2-922b-14670240551d": { + "name": "Product Inventory", + "handle": "Product Inventory", + "components": { + "bda85f11-39c0-40d3-ba35-bfd0211fea6f": { + "id": "bda85f11-39c0-40d3-ba35-bfd0211fea6f", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onSearch", + "actionId": "run-query", + "message": "Hello World!", + "alertType": "info", + "queryId": "7345388e-eda4-494d-8a44-fac9d0e11f49", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.tooljetdbGetProducts.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{20}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true + }, + "columns": { + "value": [ + { + "name": "# id", + "id": "78c599af-628d-41a5-8da0-02f40f4b0cfd", + "columnType": "number", + "key": "id" + }, + { + "id": "9dd40d5e-36f2-4257-8fc0-9fec788fe025", + "name": "product name", + "key": "product_name", + "columnType": "string", + "autogenerated": true + }, + { + "id": "6fcb6fac-ad92-4a9d-8473-f47818129a85", + "name": "quantity", + "key": "quantity", + "columnType": "number", + "autogenerated": true, + "isEditable": "{{false}}" + }, + { + "id": "8f97e3b2-69d2-44c4-b301-05f6f6c0afff", + "name": "price ($)", + "key": "price", + "columnType": "number", + "autogenerated": true + }, + { + "id": "935cf13c-6101-4fae-a9ef-d4bb6a396fb2", + "name": "status", + "key": "status", + "columnType": "string", + "autogenerated": true + }, + { + "id": "68977f9a-fb0a-4f7b-85f2-cc5b11a2a0cb", + "name": "category", + "key": "category", + "columnType": "string", + "autogenerated": true + }, + { + "id": "9de6c6a2-512b-45e8-8c80-d2d8271976af", + "name": "description", + "key": "description", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 39, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 143, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 370, + "d7ef4587-d597-44fe-a09f-1e8a5afe7ebd": 161, + "80a7c021-1406-495f-98d2-c8b1789748d6": 169, + "e7828dc4-90f6-4a60-aadb-58356278dff9": 70, + "aa56b72c-5246-47a7-800d-b19a7208970a": 281, + "01397da4-b41e-4540-aec5-440e70fd38d5": 381, + "9de6c6a2-512b-45e8-8c80-d2d8271976af": 448, + "4193a446-2519-454c-9ade-d468ce8e0acb": 89, + "6fcb6fac-ad92-4a9d-8473-f47818129a85": 97, + "935cf13c-6101-4fae-a9ef-d4bb6a396fb2": 117, + "8f97e3b2-69d2-44c4-b301-05f6f6c0afff": 89, + "78c599af-628d-41a5-8da0-02f40f4b0cfd": 35, + "68977f9a-fb0a-4f7b-85f2-cc5b11a2a0cb": 137, + "leftActions": 67, + "rightActions": 137, + "9dd40d5e-36f2-4257-8fc0-9fec788fe025": 169 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Edit", + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "77c87ef4-529f-47fa-831a-05c96bb56518" + } + ], + "position": "right", + "textColor": "#5079ffff", + "backgroundColor": "#5079ff1a" + }, + { + "name": "Action1", + "buttonText": "Remove", + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c661499a-48fd-4c95-ace8-0a0b8af9d350" + } + ], + "position": "right", + "textColor": "#d0021bff", + "backgroundColor": "#d0021b1a" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "email", + "Assigned to", + "Quantity", + "Status", + "product description", + "id", + "is_active" + ] + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "serverSideSearch": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + } + ] + }, + "layouts": { + "desktop": { + "top": 239.9999122619629, + "left": 2.3255818850376775, + "width": 40.99999999999999, + "height": 610 + } + } + }, + "e70226f2-0985-4145-9fb4-d8355258b0c5": { + "id": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4a90e2ff", + "fxActive": false + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add a Product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add a Product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "490px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal1", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 400 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 920.0000610351562, + "left": 4.651166952654379, + "width": 4, + "height": 30 + } + } + }, + "5d0ed3c3-5679-4ad7-9282-8910827889fa": { + "id": "5d0ed3c3-5679-4ad7-9282-8910827889fa", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "0bed2d35-61e3-4a6e-ab63-e22a0b2fc899", + "queryName": "tooljetdbAddProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{components.textinput4.value.length < 1 || components.numberinput1.value == 0 || components.numberinput2.value == 0 || components.dropdown1.value == undefined || components.dropdown2.value == undefined || components.textarea2.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add product" + }, + "loadingState": { + "value": "{{queries.tooljetdbAddProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420.00006103515625, + "left": 79.06980042535031, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "ba1e39b1-62cd-4c2a-953a-3ff1c96feaac": { + "id": "ba1e39b1-62cd-4c2a-953a-3ff1c96feaac", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "e70226f2-0985-4145-9fb4-d8355258b0c5" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button3", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420.0000305175781, + "left": 65.08360450313526, + "width": 5.026685393258427, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "ac425c6b-770e-4d8f-ba4b-1161ce72f665": { + "id": "ac425c6b-770e-4d8f-ba4b-1161ce72f665", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651146748971732, + "width": 6, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "3085d2cc-d42a-4fe5-8bf9-da4baefa2048": { + "id": "3085d2cc-d42a-4fe5-8bf9-da4baefa2048", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651157506611227, + "width": 15, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "2c8fbdb8-36a9-48ed-981d-044086f48d6f": { + "id": "2c8fbdb8-36a9-48ed-981d-044086f48d6f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.162797507362264, + "width": 1, + "height": 100 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "31b32887-f5ce-43a0-a439-3547dd1f8775": { + "id": "31b32887-f5ce-43a0-a439-3547dd1f8775", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price ($)" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 199.9999771118164, + "left": 4.651161007056952, + "width": 6, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "429f6f5a-1962-493c-9fc0-e5abd73df999": { + "id": "429f6f5a-1962-493c-9fc0-e5abd73df999", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 139.99999618530273, + "left": 55.81394566271558, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "1a8ac421-59f2-49b9-b5c2-ea8caa3e6fe0": { + "id": "1a8ac421-59f2-49b9-b5c2-ea8caa3e6fe0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 259.99999618530273, + "left": 4.651163937000746, + "width": 14.943668648140722, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "3362f3ca-5134-4e19-8f06-7b27d1fd942e": { + "id": "3362f3ca-5134-4e19-8f06-7b27d1fd942e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter product description..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea2", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 299.99997901916504, + "left": 4.651139300533316, + "width": 39.00000000000001, + "height": 100 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "e5409124-b033-4c2f-91d1-6dba1a938395": { + "id": "e5409124-b033-4c2f-91d1-6dba1a938395", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 4.6511809162900555, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "5f3ead84-8a42-40b3-b3e6-46ec994a7594": { + "id": "5f3ead84-8a42-40b3-b3e6-46ec994a7594", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter product name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput4", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80.00000762939453, + "left": 20.930223155150934, + "width": 32, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "64931418-c1f1-4a80-b0d6-989ed7e7d7b3": { + "id": "64931418-c1f1-4a80-b0d6-989ed7e7d7b3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Category" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 55.81395720035743, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "0d0efc13-ae0e-4e1f-8d90-c8c508487fef": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{['in_stock', 'yet_to_receive']}}" + }, + "display_values": { + "value": "{{['In stock', 'Yet to receive']}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "layouts": { + "desktop": { + "top": 140.00000762939453, + "left": 67.44186885999612, + "width": 12.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "5caec9ab-5eea-42be-bfb0-4a3783b388e9": { + "id": "5caec9ab-5eea-42be-bfb0-4a3783b388e9", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{[\"apparel\",\"appliances\",\"beverage\",\"electronics\",\"food\",\"furniture\",\"software\"]}}" + }, + "display_values": { + "value": "{{[\"Apparel\",\"Appliances\",\"Beverage\",\"Electronics\",\"Food\",\"Furniture\",\"Software\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select category..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 67.4418446186934, + "width": 12.000000000000002, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "5086fc5a-b6db-4b6d-b3b0-fd362c7a8bd2": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{0}}" + }, + "maxValue": { + "value": "1000" + }, + "minValue": { + "value": "1" + }, + "placeholder": { + "value": "{{components.numberinput1.value}}" + }, + "decimalPlaces": { + "value": "{{0}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput1", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "layouts": { + "desktop": { + "top": 140.00000762939453, + "left": 20.930226913180842, + "width": 12, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "5dcf6696-566a-44e6-a65d-1a5f6e9a453f": { + "id": "5dcf6696-566a-44e6-a65d-1a5f6e9a453f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "0" + }, + "maxValue": { + "value": "999999" + }, + "minValue": { + "value": "0.50" + }, + "placeholder": { + "value": "{{components.numberinput2.value}}" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput2", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 200.00000762939453, + "left": 20.93028135805831, + "width": 12, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "cca6303c-ef16-4260-9372-4e7d9415c830": { + "id": "cca6303c-ef16-4260-9372-4e7d9415c830", + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.navbarBg}}", + "fxActive": true + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 1px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 19.999927520751953, + "left": 2.3255818809714563, + "width": 41, + "height": 200 + } + } + }, + "a5593c55-f9b1-41e7-8e19-ff2655cf2e0e": { + "id": "a5593c55-f9b1-41e7-8e19-ff2655cf2e0e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "{{queries.colorPalette.data.navbarText}}", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": "{{1}}" + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R
N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text34", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30.000030517578125, + "left": 2.325586532820495, + "width": 2.999999999999999, + "height": 50 + } + }, + "parent": "cca6303c-ef16-4260-9372-4e7d9415c830" + }, + "ad2d719a-06ef-4eda-9f11-8b2577ae8656": { + "id": "ad2d719a-06ef-4eda-9f11-8b2577ae8656", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "{{queries.colorPalette.data.navbarText}}", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Inventory Management" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text35", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10.000022888183594, + "left": 72.09301773246553, + "width": 10.999999999999998, + "height": 50 + } + }, + "parent": "cca6303c-ef16-4260-9372-4e7d9415c830" + }, + "c48605fb-d070-430a-acd6-b53c74a91542": { + "id": "c48605fb-d070-430a-acd6-b53c74a91542", + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff1a", + "fxActive": false + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container4", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 69.99997329711914, + "left": 53.48836566428588, + "width": 19, + "height": 100 + } + }, + "parent": "cca6303c-ef16-4260-9372-4e7d9415c830" + }, + "e8993a2f-f890-4ea1-b3f5-c73b5d37d25e": { + "id": "e8993a2f-f890-4ea1-b3f5-c73b5d37d25e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#ffffffff", + "fxActive": false + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Qty in total" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text36", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 2.3255595483197293, + "width": 9, + "height": 30 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "f7378bb7-fc93-401d-b607-9b85d7597e58": { + "id": "f7378bb7-fc93-401d-b607-9b85d7597e58", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#ffffffff", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInTotal ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text37", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00006103515625, + "left": 2.325598714555765, + "width": 9, + "height": 40 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "e1486c23-dbb0-45dd-8c10-1e2ed444268a": { + "id": "e1486c23-dbb0-45dd-8c10-1e2ed444268a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#e1ffbcff", + "fxActive": false + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Qty in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text38", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10.00006103515625, + "left": 27.906983557818467, + "width": 9, + "height": 30 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "d12b2033-5ea0-49c8-9c77-d3afff7e98fe": { + "id": "d12b2033-5ea0-49c8-9c77-d3afff7e98fe", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#ffe4b1ff", + "fxActive": false + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Low in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text39", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 53.488367883212355, + "width": 9, + "height": 30 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "b968e82f-6b90-4aa0-811d-99822f468432": { + "id": "b968e82f-6b90-4aa0-811d-99822f468432", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#e1ffbcff", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text40", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.000030517578125, + "left": 27.90696726525265, + "width": 9, + "height": 40 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "9981da2a-e73b-4885-94f3-de13ea365a41": { + "id": "9981da2a-e73b-4885-94f3-de13ea365a41", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#FFE4B1", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.lowInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text41", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00006103515625, + "left": 53.488374549642096, + "width": 9, + "height": 40 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "7eec1073-d3c7-4c76-a658-875f5193660a": { + "id": "7eec1073-d3c7-4c76-a658-875f5193660a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#fd9eaaff", + "fxActive": false + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Out of stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text42", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 79.06977937741273, + "width": 8, + "height": 30 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "00ba0f12-bc7d-4f7d-82be-68098d4176e3": { + "id": "00ba0f12-bc7d-4f7d-82be-68098d4176e3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#fc9faaff", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.outOfStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text43", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00006103515625, + "left": 79.0697761556572, + "width": 8, + "height": 40 + } + }, + "parent": "c48605fb-d070-430a-acd6-b53c74a91542" + }, + "10ae148a-73d0-4704-afe0-509701496a57": { + "id": "10ae148a-73d0-4704-afe0-509701496a57", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "e70226f2-0985-4145-9fb4-d8355258b0c5" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.navbarBtnBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.navbarBtnText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.navbarBtnText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.navbarBtnBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add new product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button6", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 130.00004959106445, + "left": 2.3255673782109563, + "width": 5, + "height": 40 + } + }, + "parent": "cca6303c-ef16-4260-9372-4e7d9415c830" + }, + "c661499a-48fd-4c95-ace8-0a0b8af9d350": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4D72FA" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Remove product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Launch Modal" + }, + "size": { + "value": "sm" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "180px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal3", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 919.9999504089355, + "left": 27.906962694408737, + "width": 4, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "683d6ea7-919b-45ae-ac4b-bd1db7f7392a": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{15}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Warning: This process is irreversible.
\nAre you sure you want to remove the product?" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "c661499a-48fd-4c95-ace8-0a0b8af9d350", + "layouts": { + "desktop": { + "top": 19.999996185302734, + "left": 4.651163317075356, + "width": 39, + "height": 70 + } + }, + "withDefaultChildren": false + }, + "16d754e1-5c47-48ca-bebb-2c05305b2381": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "1fd7199d-3feb-4c93-a2b6-070a77c075eb", + "queryName": "tooljetdbRemoveProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Remove" + }, + "loadingState": { + "value": "{{queries.tooljetdbRemoveProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button7", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "c661499a-48fd-4c95-ace8-0a0b8af9d350", + "layouts": { + "desktop": { + "top": 100, + "left": 53.4883593562437, + "width": 10.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "20479ec7-d720-4f70-be3a-79b580a6702c": { + "id": "20479ec7-d720-4f70-be3a-79b580a6702c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c661499a-48fd-4c95-ace8-0a0b8af9d350" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button8", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 99.99995803833008, + "left": 23.255806746040598, + "width": 10.000000000000002, + "height": 40 + } + }, + "parent": "c661499a-48fd-4c95-ace8-0a0b8af9d350" + }, + "77c87ef4-529f-47fa-831a-05c96bb56518": { + "id": "77c87ef4-529f-47fa-831a-05c96bb56518", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4a90e2ff", + "fxActive": false + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Edit Product #{{components.table1.selectedRow.id}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add a Product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "490px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal2", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 400 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 920.0000610351562, + "left": 16.279071708163297, + "width": 4, + "height": 30 + } + } + }, + "580ea5ee-1870-4b17-9e90-a470164586a5": { + "id": "580ea5ee-1870-4b17-9e90-a470164586a5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "65d4cafc-537f-4874-8153-393f4108c0cb", + "queryName": "tooljetdbUpdateProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{components.textinput2.value.length < 1 || components.numberinput5.value < 0 || components.numberinput6.value == 0 || components.dropdown5.value == undefined || components.dropdown6.value == undefined || components.textarea3.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Save changes" + }, + "loadingState": { + "value": "{{queries.tooljetdbUpdateProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button9", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420.0000057220459, + "left": 79.06978899941035, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "b2ea1cba-58bb-4fd6-b6de-cb6f032bf5eb": { + "id": "b2ea1cba-58bb-4fd6-b6de-cb6f032bf5eb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "77c87ef4-529f-47fa-831a-05c96bb56518" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button10", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 419.99999237060547, + "left": 65.08360269503015, + "width": 5.026685393258427, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "e34c4eed-2bc9-42d2-85d4-02ba4ea28f38": { + "id": "e34c4eed-2bc9-42d2-85d4-02ba4ea28f38", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text25", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651161786086923, + "width": 7, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "19bce438-a2ca-41af-8055-46cfb3933872": { + "id": "19bce438-a2ca-41af-8055-46cfb3933872", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651161793912395, + "width": 15, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "0065dcc9-35f5-49b5-bd6c-e6ed7a4af108": { + "id": "0065dcc9-35f5-49b5-bd6c-e6ed7a4af108", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider3", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.162797507362264, + "width": 1, + "height": 100 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "b50551e1-ded0-4f02-b432-9cf7928b6749": { + "id": "b50551e1-ded0-4f02-b432-9cf7928b6749", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price ($)" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 4.651155125512338, + "width": 6, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "1f67445b-4161-4ee3-94d9-4f1bdb10f792": { + "id": "1f67445b-4161-4ee3-94d9-4f1bdb10f792", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 55.81395137164659, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "ff78a251-d9be-44c1-a67b-fd3cf8e00247": { + "id": "ff78a251-d9be-44c1-a67b-fd3cf8e00247", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 260.0000114440918, + "left": 4.651164969781484, + "width": 14.943668648140722, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "90cdac46-ceef-4608-a69a-3886fd90f937": { + "id": "90cdac46-ceef-4608-a69a-3886fd90f937", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.description}}" + }, + "placeholder": { + "value": "Enter product description..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea3", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 300.0000476837158, + "left": 4.6511335594497325, + "width": 39.00000000000001, + "height": 100 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "e24173bd-0905-471a-b0d3-c3eff137b02d": { + "id": "e24173bd-0905-471a-b0d3-c3eff137b02d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 4.651160213588963, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "988267b6-4523-4a8d-82db-ceae70601f42": { + "id": "988267b6-4523-4a8d-82db-ceae70601f42", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.product_name}}" + }, + "placeholder": { + "value": "Enter product name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 79.99998474121094, + "left": 20.930219677504155, + "width": 32, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "37e56ce8-cdaa-40b6-a8ed-6a9714fc4d87": { + "id": "37e56ce8-cdaa-40b6-a8ed-6a9714fc4d87", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Category" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 55.813963751906705, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "7ea12940-680e-4ac1-b83b-8200aa3e4c42": { + "id": "7ea12940-680e-4ac1-b83b-8200aa3e4c42", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{components.numberinput5.value > 0 ? components.table1.selectedRow.status : \"out_of_stock\"}}" + }, + "values": { + "value": "{{components.numberinput5.value > 0 ? [\"in_stock\", \"yet_to_receive\"] : [\"out_of_stock\"]}}" + }, + "display_values": { + "value": "{{components.numberinput5.value > 0 ? [\"In stock\", \"Yet to receive\"] : [\"Out of stock\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown5", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140.00002098083496, + "left": 67.44186541127978, + "width": 12.000000000000002, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "da9c2558-72a6-40de-8316-280e94ab09ff": { + "id": "da9c2558-72a6-40de-8316-280e94ab09ff", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{components.table1.selectedRow.category}}" + }, + "values": { + "value": "{{[\"apparel\",\"appliances\",\"beverage\",\"electronics\",\"food\",\"furniture\",\"software\"]}}" + }, + "display_values": { + "value": "{{[\"Apparel\",\"Appliances\",\"Beverage\",\"Electronics\",\"Food\",\"Furniture\",\"Software\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select category..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown6", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 199.99999046325684, + "left": 67.44184492717345, + "width": 12.000000000000002, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "9c2a1cfd-ce9c-4e4b-b573-9336a468c5a3": { + "id": "9c2a1cfd-ce9c-4e4b-b573-9336a468c5a3", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.quantity}}" + }, + "maxValue": { + "value": "1000" + }, + "minValue": { + "value": "0" + }, + "placeholder": { + "value": "{{components.numberinput5.value}}" + }, + "decimalPlaces": { + "value": "{{0}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput5", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 139.9999942779541, + "left": 20.930229033515786, + "width": 12, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + }, + "52c88014-8084-41e4-bbad-069fcbf4c89c": { + "id": "52c88014-8084-41e4-bbad-069fcbf4c89c", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.price}}" + }, + "maxValue": { + "value": "999999" + }, + "minValue": { + "value": "0.50" + }, + "placeholder": { + "value": "{{components.numberinput6.value}}" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput6", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 200, + "left": 20.930284607776873, + "width": 12, + "height": 40 + } + }, + "parent": "77c87ef4-529f-47fa-831a-05c96bb56518" + } + }, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "7345388e-eda4-494d-8a44-fac9d0e11f49", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ] + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "100000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": "1000", + "canvasBackgroundColor": "#ffffff", + "backgroundFxQuery": "{{queries.colorPalette.data[\"canvasBg_\"+globals.theme.name]}}" + } + }, + "appId": "814c14d7-2c8c-4e30-9013-63dfcfe16d77", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-09-19T08:22:32.234Z", + "updatedAt": "2023-10-10T13:37:10.865Z" + } + ], + "appEnvironments": [ + { + "id": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "production", + "isDefault": true, + "priority": 3, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "staging", + "isDefault": false, + "priority": 2, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "development", + "isDefault": false, + "priority": 1, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + } + ], + "dataSourceOptions": [ + { + "id": "0c980db9-a929-481a-be6a-b71ea5ad2107", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "7f703daa-1e72-4a75-bc70-884816577a05", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8210c7ae-f59e-4bea-b0c5-50c118343441", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ffbf05e-51d6-4087-a11f-b4d7e431dc83", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "63a0be80-a870-4cc2-ab64-8127efbd108d", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "869450d4-61c3-4d90-b714-4b1881e39518", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd7cbbff-0d68-4493-983d-37b726ebc98c", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3e4c6b07-8e27-4163-a2f2-cbb55942f87b", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "70a7e577-d084-40ce-a5e7-058c86912c66", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "ca37482f-4921-4c56-87dc-6b2eae124de4", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "35c27146-7fc0-4b09-a2ce-0f245bbf714b", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3bfaae26-a193-41be-a6df-6c854851ec90", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a1d06fc-5357-4784-8468-61886137214b", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "4ebed5f4-aa04-4674-88b5-475de6305c15", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "09bf5c38-8cec-4973-8855-643c5133d87e", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4254e048-0e9c-4173-ac9b-6448fdfe0272", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "81c95c9d-4d5c-4509-bcc0-9b6db463646a", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "a4fec9af-15b8-4288-a3dc-c6797f050b2c", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "100298a0-928d-4589-a70f-34a0926a28a1", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "aba37959-1599-4a70-ae4c-7b05ffa2a800", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e950b029-4156-4afe-8a18-e7927aafc191", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "ca1f9156-a727-4e4d-b609-396d9ad65b7a", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e8040071-0a1a-4e11-a04f-7cbc179d5868", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "ef525392-c7cb-431d-8525-afd52f2a0131", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b5192850-7615-4e13-b1ae-93b956f5be03", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a1043e60-e673-4041-a64f-e26e4609cdbf", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "72371933-729a-4e35-9915-950ed7d1a6da", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "dc16dddb-6eb9-4a56-8b83-c7821c1be3e4", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a59db8a-b46b-4411-ba16-c6e9614fde09", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "6fc0a89f-6fe0-48ed-b085-f1ba06c15b00", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9c069f5a-1e8c-432e-ac34-4bd3102d8c84", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9ce12342-7f72-4170-a0c3-a2fa750b08ec", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "08bc41cc-49b7-46f1-a7d8-e491f3b1e687", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e5d9ca99-a662-4dc3-bb06-11d3efc5b0e6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df795abb-982a-4a49-852a-6e049d72b063", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd79676a-f641-4f13-897c-a4487298e956", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "109373cc-a29d-49cf-9c09-b78d9000c797", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "394cd4b9-6678-4666-a3b4-7220fdc9f3fa", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "49a16184-fb7f-4302-8f3a-183203af3e13", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "58c756e7-4ac8-47e5-ad47-dd9f3bd54bd6", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a115c49b-a119-40d0-8db0-f020724207ad", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e138a408-40a3-4a04-8f43-d4d9f77b670d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "24db297d-9213-4102-a253-26a34565ee73", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "73e98e30-9fd0-4ee2-b001-a91cc6fa8396", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4bb78281-112c-411c-9fc1-fe6b8c4ef0c9", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "4edc07e1-819c-433d-9545-7156e0813abf", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "7eb5fab2-76bb-4457-b049-d2fc338cd143", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a729b4d1-1520-4a4f-92d9-5b4d39e609a7", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "649ebc41-1207-4383-ac37-affebaf46025", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a980201d-0197-41af-8b44-5b9a777d08db", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a011c5e5-60bd-44d4-a057-b5aa23b75aee", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "bb811868-ea85-4b54-8a13-e999971eeb9d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f9d33ef5-bf7d-4c52-a919-64cd39b5a9c5", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "69f40c97-1d4e-4f87-9a98-7f0a12a3238b", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "5a13235b-390e-4888-bbca-4c0e7e85b811", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e096bd24-e396-4893-88dd-2872176057a2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "cd9235bc-aec9-4da1-b22c-e7da50f3cde6", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f7cf3288-f755-40db-ac07-c6f0832b7c6b", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "42d8efc3-5c1a-4085-a259-b38e0a5c2df5", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "7e49e5a8-08d7-4a02-897c-13d235ab00f9", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0af3f0c9-bf1e-4b60-8868-25dcaa5c509c", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b3ca510b-fd4d-48b1-a204-39905d3553d6", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "2b64c284-3043-4011-b501-7438f977e8d6", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "66234021-3d1e-4314-aa85-233e15c788c4", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3eb4f10b-d70f-457b-a6d6-1facf33bb388", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ed34011-fb0c-4df6-9ac3-c0722e5afc15", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "603ecf7a-24ca-4102-a3a2-9adf3540d47f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "064644df-c753-4c38-a368-08760a852289", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df6525aa-cba3-40aa-92be-d908007f1d47", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "427cc0a3-b736-4552-a043-849312f72535", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "fd4bc72c-00f5-42d5-9fe6-758b3c4e05a1", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b92d7e20-aef7-408c-a5fd-cfb1afe3802f", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd459a47-9e32-448b-a362-a957ed61a744", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "ea086241-7ebf-42b3-a9e0-98e7f9615fde", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.259Z", + "updatedAt": "2023-02-07T08:20:48.259Z" + }, + { + "id": "2f3691b6-4dc5-49db-be70-2646b0b37b3e", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "88454045-b2a0-4f59-baf5-0f32a0f5000c", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.268Z", + "updatedAt": "2023-02-07T08:20:48.268Z" + }, + { + "id": "0a14939a-e6e2-4156-833d-692fa2374241", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "0d46628b-d8e9-4463-b4d1-bf254a825ffd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.273Z", + "updatedAt": "2023-02-07T08:20:48.273Z" + }, + { + "id": "fcd55e6a-7b48-4541-b86b-8fc5d661ff08", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.283Z", + "updatedAt": "2023-02-07T08:20:48.283Z" + }, + { + "id": "3e6b2492-3d73-4792-b447-3bd27a74d424", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.287Z", + "updatedAt": "2023-02-07T08:20:48.287Z" + }, + { + "id": "506a0e32-25c0-4a19-a6f7-9d04c339d28b", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.289Z", + "updatedAt": "2023-02-07T08:20:48.289Z" + }, + { + "id": "6b19a6ab-7756-4386-9592-6ab4d5fa98d1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.295Z", + "updatedAt": "2023-02-07T08:20:48.295Z" + }, + { + "id": "af5be5e6-666d-4437-a75c-a10830980dbe", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.297Z", + "updatedAt": "2023-02-07T08:20:48.297Z" + }, + { + "id": "983162ea-8848-4388-b88c-971523d0cbb1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.299Z", + "updatedAt": "2023-02-07T08:20:48.299Z" + }, + { + "id": "a308e389-9497-4f1b-9564-5424a0a0b7b1", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.348Z", + "updatedAt": "2023-02-07T08:20:48.348Z" + }, + { + "id": "18d6b459-7d7d-4ba0-9ee7-c581844e0d45", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.351Z", + "updatedAt": "2023-02-07T08:20:48.351Z" + }, + { + "id": "478e9b22-6f4d-45fa-b50f-77b45a616669", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.353Z", + "updatedAt": "2023-02-07T08:20:48.353Z" + }, + { + "id": "bd491146-3009-418f-a4d6-5e976d966a01", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.356Z", + "updatedAt": "2023-02-07T08:20:48.356Z" + }, + { + "id": "9383e443-5c0f-4fe9-ac9a-273971edd22b", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.357Z", + "updatedAt": "2023-02-07T08:20:48.357Z" + }, + { + "id": "764bce5d-3227-4681-806f-50051e97a6f1", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.359Z", + "updatedAt": "2023-02-07T08:20:48.359Z" + }, + { + "id": "2f79cbc9-4ecc-4a2a-8f14-624961660a51", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "2f701e52-7cfe-49a8-bb40-956ed45342d1", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.858Z", + "updatedAt": "2023-02-07T10:13:59.858Z" + }, + { + "id": "ce715761-73f2-46b1-95f2-124d2b098a77", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "da58d6d5-09e3-4d72-a3cb-48277e4d5379", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.863Z", + "updatedAt": "2023-02-07T10:13:59.863Z" + }, + { + "id": "116031c1-ee38-483d-9625-b13548d97459", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "999deb1f-6190-4508-8607-2b57a9acf977", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.867Z", + "updatedAt": "2023-02-07T10:13:59.867Z" + }, + { + "id": "4ba4ad64-bdac-45e2-a112-da4bb720e654", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "f20d22f2-75db-4ff7-94d1-3667878c031b", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.842Z" + }, + { + "id": "9659e653-8eca-4ed1-9cfa-c27c3080bc61", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9fe7b96b-8899-40ae-bfb2-f2c56c89389e", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.834Z" + }, + { + "id": "9da2713d-98d6-4388-a5e7-42cb22d2a0f9", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "d5b29186-21d7-45e3-a40c-7d3a4a6306e2", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.762Z" + }, + { + "id": "1c193e6d-f21a-4945-a1a3-0271900258ef", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1852e614-7f87-4e16-8d35-ae924ce2193b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.450Z", + "updatedAt": "2023-07-07T10:07:23.333Z" + }, + { + "id": "7c172ef0-eabb-4ce1-9fef-7534e4804218", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b159f378-74b0-44cb-9b04-ea4a1c02bd09", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.706Z" + }, + { + "id": "f9ff54d6-55af-4428-ad9a-75343cd2cd36", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e3baf697-ea3e-4f03-be01-db6d0344f635", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.698Z" + }, + { + "id": "c85938e4-7be9-46c6-b37f-045435dc17e7", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "91112338-8edc-437e-a066-eb7445b8c9f0", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "a754d3d0-ff68-47b0-ad58-073862e0e78a", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "57204c96-1590-49d0-ae82-85d6096b4f3f", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.753Z", + "updatedAt": "2023-07-21T15:39:41.753Z" + }, + { + "id": "5d8aeece-e171-4f98-a17a-dafcf094eefc", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.754Z", + "updatedAt": "2023-07-21T15:39:41.754Z" + }, + { + "id": "37f7e000-2b47-429f-b7e4-9e024479d9b8", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.756Z", + "updatedAt": "2023-07-21T15:39:41.756Z" + }, + { + "id": "fb85fb2c-9aed-4dda-b167-d9b95bd8695f", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.762Z", + "updatedAt": "2023-07-21T15:39:41.762Z" + }, + { + "id": "57bc1c57-3a79-4f8c-8f82-743783098320", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.764Z", + "updatedAt": "2023-07-21T15:39:41.764Z" + }, + { + "id": "e3df8c1e-e689-460e-a1c0-a6ac34e2c6fb", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.765Z", + "updatedAt": "2023-07-21T15:39:41.765Z" + }, + { + "id": "ddb73901-f6b8-4e98-a98e-d20764e981d5", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.770Z", + "updatedAt": "2023-07-21T15:39:41.770Z" + }, + { + "id": "64ded0f0-a523-46e0-8de4-1233af798e69", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.773Z", + "updatedAt": "2023-07-21T15:39:41.773Z" + }, + { + "id": "563951c4-3c25-4c16-85bd-bf35c67c541d", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.774Z", + "updatedAt": "2023-07-21T15:39:41.774Z" + }, + { + "id": "7054580b-dcf1-42db-8599-b295874586e4", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "apiKey": { + "credential_id": "309cd1c4-4241-4757-9216-7c1d5052a6f2", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.508Z" + }, + { + "id": "69646d74-947f-4ac7-9560-b58fce035d3c", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "apiKey": { + "credential_id": "02ea1d76-bf4e-40b5-a57a-ad02467754d7", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.489Z" + }, + { + "id": "35da5f37-e660-4711-8b89-3ed348857e88", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "apiKey": { + "credential_id": "61601401-8d9b-47d8-81cc-fcb0ab9df125", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.509Z" + }, + { + "id": "607909a2-1d4d-4bab-8468-1f0f8351ab14", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.735Z", + "updatedAt": "2023-08-11T05:25:31.735Z" + }, + { + "id": "9423866f-d475-42c3-b2a7-c63be6ed9abb", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.739Z", + "updatedAt": "2023-08-11T05:25:31.739Z" + }, + { + "id": "90a1596f-5d45-4ad4-a376-3b555f4773bd", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.741Z", + "updatedAt": "2023-08-11T05:25:31.741Z" + }, + { + "id": "a41de1f3-3486-4f59-a964-fd99a077d61b", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.747Z", + "updatedAt": "2023-08-11T05:25:31.747Z" + }, + { + "id": "5b452053-b728-48ea-969f-35ee44bd449e", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.750Z", + "updatedAt": "2023-08-11T05:25:31.750Z" + }, + { + "id": "b4e5d146-7682-44c6-b009-9a59a3a144bb", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.752Z", + "updatedAt": "2023-08-11T05:25:31.752Z" + }, + { + "id": "d01715d9-1ffb-405e-b5e3-b9d786697627", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.761Z", + "updatedAt": "2023-08-11T05:25:31.761Z" + }, + { + "id": "fff3b76b-14f9-49c2-9520-ccff9f3b0239", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.764Z", + "updatedAt": "2023-08-11T05:25:31.764Z" + }, + { + "id": "c1136230-787e-4985-afa3-ec88e383b3c1", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.766Z", + "updatedAt": "2023-08-11T05:25:31.766Z" + }, + { + "id": "6e14d7b5-99db-4f14-84e4-8fa34ca096da", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.772Z", + "updatedAt": "2023-08-11T05:25:31.772Z" + }, + { + "id": "a0bed57b-7aae-4a5a-b154-49cdd9e508cb", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.775Z", + "updatedAt": "2023-08-11T05:25:31.775Z" + }, + { + "id": "13272f64-55dc-4fd9-a692-9dc9afe40b97", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.780Z", + "updatedAt": "2023-08-11T05:25:31.780Z" + }, + { + "id": "abbd66ec-c0a2-4893-8bd1-a90100ec7963", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.785Z", + "updatedAt": "2023-08-11T05:25:31.785Z" + }, + { + "id": "563d611b-ed1e-46a1-bad7-f1ffd91cffef", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connection_limit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf05673058", + "encrypted": false + }, + "password": { + "value": "08BcGsD9))xK7rpLAKDw8QK", + "encrypted": false + }, + "host": { + "value": "dbpwf05673058.sysp0000.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "supplychain", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.788Z", + "updatedAt": "2023-08-11T05:25:31.788Z" + }, + { + "id": "eb8f5145-06ae-4ee6-bd79-26bbacf672d7", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.791Z", + "updatedAt": "2023-08-11T05:25:31.791Z" + }, + { + "id": "aa622b9c-27c6-45c6-8ec7-471e4a346a7c", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "d8dbbb97-667b-42cf-8e1d-c3920b91ae0a", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "34b17572-60b1-4895-bd93-5c85ba03b319", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "3d4a1b27-f9bd-47ae-aaaa-d1564e91456a", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.804Z", + "updatedAt": "2023-08-11T05:27:56.804Z" + }, + { + "id": "525b25cb-90b1-4d2c-80cf-b4fc2b3e4fee", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.807Z", + "updatedAt": "2023-08-11T05:27:56.807Z" + }, + { + "id": "4a853db8-3f1d-4cf2-93c2-ce3e28266b36", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.809Z", + "updatedAt": "2023-08-11T05:27:56.809Z" + }, + { + "id": "846b03f8-f6e1-4a79-8ae7-d545c1f4f0b5", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.813Z", + "updatedAt": "2023-08-11T05:27:56.813Z" + }, + { + "id": "4de0613b-4f14-40c9-aeac-7d027ff73833", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.815Z", + "updatedAt": "2023-08-11T05:27:56.815Z" + }, + { + "id": "69eb4761-b882-4c51-8e11-e568731bc43e", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.818Z", + "updatedAt": "2023-08-11T05:27:56.818Z" + }, + { + "id": "564f68c5-4980-493f-9699-1ff567482fd0", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.821Z", + "updatedAt": "2023-08-11T05:27:56.821Z" + }, + { + "id": "06d2856d-000f-47d1-a7ff-8e818eb42478", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.824Z", + "updatedAt": "2023-08-11T05:27:56.824Z" + }, + { + "id": "f2579e45-a0bd-423f-b724-9af76d33ea87", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.825Z", + "updatedAt": "2023-08-11T05:27:56.825Z" + }, + { + "id": "773493c0-efdf-465a-bab1-910a8ff9c6c8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "5a426139-fa01-4ea3-b1fe-9794e901503f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.832Z", + "updatedAt": "2023-08-11T05:27:56.832Z" + }, + { + "id": "026abb10-56a6-488b-b36c-f55d613893fc", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "1c465591-2ecf-4a81-945f-8dc32d7d12c5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.838Z", + "updatedAt": "2023-08-11T05:27:56.838Z" + }, + { + "id": "6c3b028c-314a-4534-8660-d412d627cda8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "159a0956-8cfb-4aa6-8a3a-e833042c6a86", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.845Z", + "updatedAt": "2023-08-11T05:27:56.845Z" + }, + { + "id": "67450519-17ee-4c56-a7ea-a0a596d3f139", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.231Z", + "updatedAt": "2023-08-11T05:30:20.231Z" + }, + { + "id": "ebb05718-564b-48dc-be97-fe9042a03a32", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.233Z", + "updatedAt": "2023-08-11T05:30:20.233Z" + }, + { + "id": "906cfd94-81db-408d-8771-ac9dd7475525", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.235Z", + "updatedAt": "2023-08-11T05:30:20.235Z" + }, + { + "id": "8ce3c15e-ce3c-443b-be1b-41de4ba604c5", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.239Z", + "updatedAt": "2023-08-11T05:30:20.239Z" + }, + { + "id": "c09660a0-0d13-4c77-825b-05035e7009d3", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.241Z", + "updatedAt": "2023-08-11T05:30:20.241Z" + }, + { + "id": "81225ea3-efa6-497f-a7a0-c4993eb0ccf4", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.243Z", + "updatedAt": "2023-08-11T05:30:20.243Z" + }, + { + "id": "fe1d2b79-b36f-4b6a-a169-05c7dfc012ae", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.246Z", + "updatedAt": "2023-08-11T05:30:20.246Z" + }, + { + "id": "c006f812-b14d-492f-bbb3-473498b1f0d1", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.249Z", + "updatedAt": "2023-08-11T05:30:20.249Z" + }, + { + "id": "44bb1b06-e6d5-4762-ae62-1ee890f646b3", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.250Z", + "updatedAt": "2023-08-11T05:30:20.250Z" + }, + { + "id": "15054e36-8e1f-410c-8038-1682aa54bc0e", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.255Z", + "updatedAt": "2023-08-11T05:30:20.255Z" + }, + { + "id": "114ca108-5785-41e3-a668-f93b0786d3a3", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.258Z", + "updatedAt": "2023-08-11T05:30:20.258Z" + }, + { + "id": "8932558d-cc2f-48bc-9073-67284f5519b2", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.260Z", + "updatedAt": "2023-08-11T05:30:20.260Z" + }, + { + "id": "16722499-31b5-4b46-b1df-ed4ad1acc8ec", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.039Z", + "updatedAt": "2023-08-11T05:30:51.039Z" + }, + { + "id": "9a318479-eeab-4446-801a-52e9cfd3070d", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.041Z", + "updatedAt": "2023-08-11T05:30:51.041Z" + }, + { + "id": "8e8d8043-75c0-4d79-b653-6878cf3443d4", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.043Z", + "updatedAt": "2023-08-11T05:30:51.043Z" + }, + { + "id": "9f7ac124-bb3d-49b3-a31e-22d3748893aa", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.046Z", + "updatedAt": "2023-08-11T05:30:51.046Z" + }, + { + "id": "9a550543-805f-4b34-aa13-b92d02f1ffcb", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.049Z", + "updatedAt": "2023-08-11T05:30:51.049Z" + }, + { + "id": "d33927b6-68cb-491c-89ab-92eba9e9e420", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.050Z", + "updatedAt": "2023-08-11T05:30:51.050Z" + }, + { + "id": "1cf19dac-8763-472b-a7c3-79bd785fe5c2", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.054Z", + "updatedAt": "2023-08-11T05:30:51.054Z" + }, + { + "id": "8b0aba4d-a18b-46e0-b6f8-74e3d0e120d0", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.056Z", + "updatedAt": "2023-08-11T05:30:51.056Z" + }, + { + "id": "ce5afd07-2e89-4459-9316-52d3a1ff4cc8", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.058Z", + "updatedAt": "2023-08-11T05:30:51.058Z" + }, + { + "id": "3705a1ca-7f79-4b54-b2f3-9c9c51ac15fb", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.061Z", + "updatedAt": "2023-08-11T05:30:51.061Z" + }, + { + "id": "9f910e79-2e89-4b95-8f51-e4c8f468bb06", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.063Z", + "updatedAt": "2023-08-11T05:30:51.063Z" + }, + { + "id": "c29e2d61-df14-4058-be31-0e6049af3767", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.065Z", + "updatedAt": "2023-08-11T05:30:51.065Z" + }, + { + "id": "a71b2210-07a0-4306-9e9a-58a67cbb16fb", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "970a7dc8-1b45-4629-85f4-0c90d979ac77", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.071Z", + "updatedAt": "2023-08-11T05:30:51.071Z" + }, + { + "id": "ca31376b-a3c7-4816-94f9-6a5f33a18752", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "84b081aa-1af2-4c94-a3f9-0aab8fbb4387", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.076Z", + "updatedAt": "2023-08-11T05:30:51.076Z" + }, + { + "id": "2b3ad55c-e489-4b64-8bb0-3259c2226b9b", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "daf902f8-4130-4b27-b809-054142b85533", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.080Z", + "updatedAt": "2023-08-11T05:30:51.080Z" + }, + { + "id": "e11d8442-b59c-41b4-907b-d6a9d39ba8f4", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "d80cea6e-acc6-4f7d-ba45-33907f1577a8", + "encrypted": true + }, + "refresh_token": { + "credential_id": "1f33c798-34fc-43e6-8194-af259c5896fd", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.093Z", + "updatedAt": "2023-08-11T05:30:51.093Z" + }, + { + "id": "e47dd2ed-a90a-497a-a10e-b8b2e3581137", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.095Z", + "updatedAt": "2023-08-11T05:30:51.095Z" + }, + { + "id": "b331e4cc-f6d1-4ea8-a8a6-ca6b7d5e1417", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "4e208265-326a-4c8f-bcfd-ade4f891b09f", + "encrypted": true + }, + "refresh_token": { + "credential_id": "a88ef077-9fe4-4c13-9be2-5ad9f8581e63", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.100Z", + "updatedAt": "2023-08-11T05:30:51.100Z" + }, + { + "id": "954bf10a-73d9-4f69-8bdf-0343ecb9b914", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "d78c54cb-2c98-4f47-b84a-48b1559d06a6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.108Z", + "updatedAt": "2023-09-08T05:45:17.147Z" + }, + { + "id": "5dd687e3-f975-40ba-a09c-5c38207cec2a", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "046fbaa7-1e06-4272-a199-ecac4e8d3652", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.112Z", + "updatedAt": "2023-08-11T05:30:51.112Z" + }, + { + "id": "dd1e77b2-4316-4422-a7db-0757cebd5ce7", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "ruby.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "xocrerjd", + "encrypted": false + }, + "username": { + "value": "xocrerjd", + "encrypted": false + }, + "password": { + "credential_id": "42639ba9-6e81-4dd0-b614-bbb576283aff", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.116Z", + "updatedAt": "2023-08-11T05:30:51.116Z" + }, + { + "id": "12ab2f62-ccf2-4d1c-9c76-6207b5d7c511", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "599802c3-5323-465b-8339-26dbab02c131", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.303Z" + }, + { + "id": "f63bacf8-aa52-4936-b5bf-6cc042c691f9", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "913cdee9-d649-4d0f-a70c-e8054e7ffcc7", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.297Z" + }, + { + "id": "e8a9d1a1-2e9d-4717-8c68-e9c461114ce6", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "0896f5b5-90db-4ec6-8058-ec2c2d2cfc41", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.304Z" + }, + { + "id": "2e0f0d5c-2025-4829-88ce-b7273c9bd21a", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "e07bce03-8500-48b0-b1ff-f4f89d85dfda", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "46e10728-7756-4ff0-aafa-e5c93d8f78fd", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connection_limit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:43.023Z" + }, + { + "id": "fc132ba2-e883-42bf-9438-aa8662beb474", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "1e833a39-b02e-4875-82b6-41cf152a1a1e", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "7fefa8e8-ae6f-4125-a633-7d0a86f0ef34", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "5f6c58ad-e405-4078-ad28-0c589bcd3cd5", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "18f07210-2414-4acf-a61e-14335775ee2e", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "231d0729-4492-4fce-b255-b0da72228478", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "862bb61e-56c9-4d52-aa7e-4b05c82340a1", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "cab55bc1-cc1c-4aa2-8b45-973b422f246f", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "202ecc77-dfc4-4735-a638-1bc7959287bd", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "5993421e-93b9-4974-8b11-c2031b2733d2", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "7f623dcd-95d1-4881-b732-61e1dd64e02b", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "3eec46f6-0a59-4281-8573-88bc3ff29761", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "fb416dce-f856-477d-a782-b397845d9781", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "097eaeee-321a-49c3-a9ce-25280a107028", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "bcde9950-77ee-417a-88ae-0ebe400e370d", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "308e77b5-ce45-4c86-9742-6c7607fed5a1", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.970Z", + "updatedAt": "2023-08-21T13:56:27.970Z" + }, + { + "id": "f03a0824-fcec-4ac6-87b6-4a9840211de6", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.973Z", + "updatedAt": "2023-08-21T13:56:27.973Z" + }, + { + "id": "0af87cd8-ba96-497f-b4bc-d12ebf047ad2", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.975Z", + "updatedAt": "2023-08-21T13:56:27.975Z" + }, + { + "id": "ee60edbf-1eca-43a3-92d8-422ce3fee6a1", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.980Z", + "updatedAt": "2023-08-21T13:56:27.980Z" + }, + { + "id": "c139c723-3f7c-43c0-bf3b-62fc951ce781", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.983Z", + "updatedAt": "2023-08-21T13:56:27.983Z" + }, + { + "id": "43448873-bf13-4c5d-a4e7-651196b9a342", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.985Z", + "updatedAt": "2023-08-21T13:56:27.985Z" + }, + { + "id": "f573eb7d-ac39-4b75-be62-ae7765965959", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.991Z", + "updatedAt": "2023-08-21T13:56:27.991Z" + }, + { + "id": "b0b405ad-9af6-40e9-ad47-d00543b21d5b", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.993Z", + "updatedAt": "2023-08-21T13:56:27.993Z" + }, + { + "id": "81cf7c3b-2b18-4dfb-862d-61ea48c93731", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.995Z", + "updatedAt": "2023-08-21T13:56:27.995Z" + }, + { + "id": "99ffb143-7554-4771-8748-e8e0692c353d", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.999Z", + "updatedAt": "2023-08-21T13:56:27.999Z" + }, + { + "id": "b58b48b1-3df7-4837-957a-8651dfa10495", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:28.002Z", + "updatedAt": "2023-08-21T13:56:28.002Z" + }, + { + "id": "b0823937-7525-441f-bac2-b76c128f4b9a", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:28.004Z", + "updatedAt": "2023-08-21T13:56:28.004Z" + }, + { + "id": "17638875-3f23-418e-8bb2-8a23c6862772", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "c7771fa2-5315-4e67-ad76-629fa6303bc8", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2496c4bf-eb4b-4c8c-ba0e-3bd7d1b41e31", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "a61c8e71-457e-473b-b7d9-541c8bddf53a", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "e234fc17-4936-4a5c-9fb0-1ce868b8fda8", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "71acc523-8faa-41a8-a321-833f71ffb54e", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "13af9c1c-6e4a-4cc3-aec5-6f725241194e", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "245a4b8d-77f8-469e-b32b-d59962d1ae47", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "f744db0b-412d-4dbd-af66-1d3a1eb9a4e1", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2055a89b-a704-405d-a0ef-1b78ccfdb625", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "d0681729-dd25-4b9b-996f-41975fe920ef", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "8f22a729-62d4-4521-9123-185d35df6a38", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "824a1517-83c9-4a73-9888-4b1830080aeb", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "b2165238-e3ba-4293-a5d9-84e15adc1383", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "6c7010d0-f8e1-43fb-b3b8-2583dfa97f9d", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "ee04414f-bcea-4e44-b701-7e0c3eee4678", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "ef6ae06d-affb-47b6-a5be-440ac2daed1d", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "3b98d4d8-a48d-47ea-90ca-325cf9c98065", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "9c7c8855-e71b-47f5-a5fd-7493336c60c4", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "adf7ebf4-0f89-4257-959b-3f96fc835df3", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "140ac414-92c7-4b0a-b84e-a315b5f6b5bd", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "b871cb37-8c70-4cef-a625-0d74969071b2", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "aa593377-cec9-4031-a711-103cb8cc4ef5", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "17cbbd55-b2ec-4731-9f32-d47529ff903b", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.254Z" + }, + { + "id": "c99af3f7-0d85-4de6-8c1d-48d17bcddda9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "e142d464-2728-4aaa-b497-49252b07e4d9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "af3cbb6f-7d26-4193-8f89-f7fc22fec91a", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "5029c51c-f692-40b6-a032-b053f57d4443", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "dd9719e3-87c9-4a96-843c-1578489663e2", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "1a133da3-b024-4897-8630-0ece1464b567", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.234Z", + "updatedAt": "2023-08-28T07:47:13.234Z" + }, + { + "id": "87e46111-efff-4524-be64-49d0510152b8", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "025d6ef6-cfdd-4d6d-8441-5868d10c2299", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "2cd268e5-7c36-4060-bc24-7ab82838266d", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "b206d8c1-2ac4-4586-8d62-8a418d12e8bf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "5062282d-ed14-4ff8-b2e2-ad9d8288aeaf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "9440a869-6e05-49bb-84f2-349be5631406", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "0349de56-09bb-456a-9cf3-f2c956bef552", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "user_database", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "3a47e3ba-4340-451c-a047-b7f2fa8520bd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "a4bd1a9b-ee08-4f17-b06d-56fa70c16fd0", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "467f2e41-9f98-4292-8777-242d8f1e7c75", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "4a4c3c21-d3ef-4c1f-a50e-a4c15424dc15", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "677a91dc-4373-4e98-b840-95ec5834597b", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "1e38a3cd-d349-4819-98e4-578fd7cb70e2", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "9e07557c-a502-40d3-aaff-6e58f4be04cf", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "c3ebadb7-d5bd-4077-bbfc-cfce8335d1fa", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "4ea736e5-5059-42f8-9ba7-2915c2d98c8d", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "f84c4b0f-7801-4c8e-8ac6-42056d13c9cd", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "0339a258-570a-40cc-9bef-3ef4ad58d8cb", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "e6ff42b5-bbe1-4dbf-b5bf-2b2d88aa23c8", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "2c58a954-1de0-489d-bfc2-595ed5ea523c", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "466513d1-128c-441b-9103-3d538f334dfc", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "307d6ffc-c0a6-4028-be4c-d78e7046a93a", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "4a31dd03-0da1-48b6-abd9-8e4360c33aa6", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "ecac8c08-1ba1-4780-bf2c-f57cad1f67b2", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "5018c012-11c3-47c0-b2f7-44e35570ce45", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "0a43d696-39bc-41ac-a2ae-ca008482f198", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.899Z" + }, + { + "id": "995e8fe7-c094-4382-a525-49b50b600e3e", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "32135ca5-91a6-42ba-ac2a-11a66d970f6d", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.898Z" + }, + { + "id": "7fb4953a-64fc-442e-9896-687865020ecc", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "f5e67572-5937-4662-b1bb-570c43387028", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T09:44:58.901Z" + }, + { + "id": "3e5d8554-d032-470b-8153-a4f2747a9d3e", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "cdae49ab-72be-4e14-9b64-5d180e1e8567", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "555229cf-1ced-4625-bb08-f1d9dc725141", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "52893971-c1a2-4d81-b95c-9a81de6127e5", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "ca4e9c9e-c0c9-43b1-9f44-93a19c0821c3", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "8ed63dbc-22a8-4baa-9f23-638ea088f650", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "3239421c-5716-4d0f-aad0-44a2c3d3da09", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "6772e351-893e-413a-a249-02a1604062ef", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "bdde232b-4363-478a-ab0b-7ade4a4af616", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "00e8a108-1284-4a5f-8d0b-159871c5435f", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "dafc2e2a-f62c-482f-829a-b257debf0017", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "f31ee1d7-8396-4fb6-8d07-7c5894b7cbac", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "61cdc365-6c81-465f-bcbe-938be0bd0e78", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "api_key": { + "credential_id": "157e86ee-8876-4c40-8b33-2b232a0e4479", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.678Z" + }, + { + "id": "cde99d0e-572c-428d-9d9d-3f1302eb1060", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "api_key": { + "credential_id": "88db6f8c-e0a9-45c6-a929-29f0dac8d907", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.665Z" + }, + { + "id": "c3f0693e-c422-4629-b52d-bbff1fe8e141", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "api_key": { + "credential_id": "4dd17ec9-4107-4018-812c-2c89e1aa5a4c", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.676Z" + }, + { + "id": "41cafd8f-2f88-463a-bfb0-ea85a737c46e", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "b4cc22dc-06aa-41dc-9d60-bf09eee7af8c", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "5ec07818-521c-48fb-91d9-c6e2d0b09bdc", + "encrypted": true + }, + "bearer_token": { + "credential_id": "36fc5283-190e-4577-8986-074bd777d2ae", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.556Z" + }, + { + "id": "080e370c-b767-4e8c-b06f-f574f847db9a", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "fb390b10-2760-4c23-acff-50af3bc50063", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "dec7dacb-a6e7-47c7-bb1a-ad7eaf987019", + "encrypted": true + }, + "bearer_token": { + "credential_id": "e5a3f2e7-7ef8-4365-988c-fcd016d5bfa3", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.533Z" + }, + { + "id": "746982f2-cbd0-4f5b-84b3-7aefa7ad9eb8", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "68e8cad0-d2f9-49af-93bc-9a4701e809b1", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b8bedcac-c9d2-4f55-b216-b1dbd48e9dde", + "encrypted": true + }, + "bearer_token": { + "credential_id": "cac95640-d5a7-467b-8f81-9e2387eb8789", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.549Z" + }, + { + "id": "3e6a4aca-c360-4de2-b0f0-c7c1b30de95b", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "6e545171-b88c-4168-86d4-34344a4656a3", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.402Z" + }, + { + "id": "1fb71fef-54ca-48d4-a261-9080d6d90ca1", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "df5cc284-9a76-409b-a0d9-cb644ff98457", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.397Z" + }, + { + "id": "3c0e1b76-6e28-43dc-ae38-ad164f22a5e5", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "3a81117d-b5a9-4b1e-b826-3225234d54e1", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.403Z" + }, + { + "id": "39877a2d-f1e4-4f26-9c49-d90cc74190e2", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.875Z", + "updatedAt": "2023-09-11T18:11:00.875Z" + }, + { + "id": "833c969c-815d-48ef-a754-9d6718cbe4f8", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.879Z", + "updatedAt": "2023-09-11T18:11:00.879Z" + }, + { + "id": "44b5685c-8ec7-4f1c-bd6c-c8447ae85a27", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.881Z", + "updatedAt": "2023-09-11T18:11:00.881Z" + }, + { + "id": "cb7f0613-591f-4fde-b5b0-406e01dc3dd6", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.885Z", + "updatedAt": "2023-09-11T18:11:00.885Z" + }, + { + "id": "586714d4-695b-4ae6-a42d-c001ecf6463a", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.888Z", + "updatedAt": "2023-09-11T18:11:00.888Z" + }, + { + "id": "e129dcee-2b51-402d-8e30-bdfba1755520", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.890Z", + "updatedAt": "2023-09-11T18:11:00.890Z" + }, + { + "id": "e4d11fac-5bbc-4988-b737-b2da7a3104c3", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.893Z", + "updatedAt": "2023-09-11T18:11:00.893Z" + }, + { + "id": "5a650bc5-6bfe-4871-8394-0d33b6073c5b", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.895Z", + "updatedAt": "2023-09-11T18:11:00.895Z" + }, + { + "id": "75a7c301-3b1f-44f6-b39e-05471844374f", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.897Z", + "updatedAt": "2023-09-11T18:11:00.897Z" + }, + { + "id": "589eead6-40c6-48d9-afe2-d7ed3b444a28", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.901Z", + "updatedAt": "2023-09-11T18:11:00.901Z" + }, + { + "id": "51968dcb-089c-43ae-9556-669456135607", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.903Z", + "updatedAt": "2023-09-11T18:11:00.903Z" + }, + { + "id": "2c3d0b2f-9f39-40df-9f41-dabedb0b9492", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.905Z", + "updatedAt": "2023-09-11T18:11:00.905Z" + }, + { + "id": "d6148b7c-2128-4811-a57a-2330f8209c49", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.911Z", + "updatedAt": "2023-09-11T18:11:00.911Z" + }, + { + "id": "8f230473-a489-4d9a-8f28-0e1fdc446edf", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.914Z", + "updatedAt": "2023-09-11T18:11:00.914Z" + }, + { + "id": "a72c4f12-6497-4196-a766-c2dd1470320f", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.916Z", + "updatedAt": "2023-09-11T18:11:00.916Z" + }, + { + "id": "aaa2f6eb-08b9-41e3-9ce1-9cab650eece9", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9b5b8b8b-8ff4-4f8d-b5d1-bbb23c706052", + "encrypted": true + }, + "bearer_token": { + "credential_id": "7bf0b7f4-e659-46c7-8cd9-05e0c3393c73", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "a3a6813e-227c-4cab-b513-eea0b3ce4a3c", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.645Z" + }, + { + "id": "6421f2c0-bc11-4a6b-8cba-87249c888e7d", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7584ee6e-06b2-4ff5-a66f-724e169e5e3d", + "encrypted": true + }, + "bearer_token": { + "credential_id": "aba34fdd-d13e-45ab-8fad-2857c82b3fbb", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "41e67acb-ef8e-4063-b5c5-0484997aa45e", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.646Z" + }, + { + "id": "49abc85e-8b91-4ea4-aa10-b7ee18c627fa", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b0460900-6a0d-4798-b107-3713a887f0b4", + "encrypted": true + }, + "bearer_token": { + "credential_id": "0c77121e-5cd0-4b7b-b02f-1b5074df0341", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e3246e5a-a58e-4599-b70a-fe1859a27e18", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.635Z" + }, + { + "id": "6aaeccbd-6817-4d57-be9a-38292d84dba6", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "8be25480-f672-4392-b0f0-49d3671c37bc", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c35da044-64a1-46cb-be8c-1a584ee843f9", + "encrypted": true + }, + "bearer_token": { + "credential_id": "16765afc-6cf7-40f9-9c96-2f76a4049e3a", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.267Z" + }, + { + "id": "26a69562-bcb4-49e8-a6c7-8277efd9cf93", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "76e0ebc2-0c89-4c92-82d6-60b32daa0ef4", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e8ba03f7-85d0-4209-a04e-df6541f3b8c8", + "encrypted": true + }, + "bearer_token": { + "credential_id": "c93ec91b-8f13-4027-a7b8-fd1d85fd2ede", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.253Z" + }, + { + "id": "349ccd27-d0c2-4a2c-8f9d-c25c828b499e", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e54d8e8b-4754-42e4-b443-8e3fbc4c41ed", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "0a89973a-6612-4e8a-85be-04737a01c475", + "encrypted": true + }, + "bearer_token": { + "credential_id": "b4def6fe-6194-4fc7-a1aa-c7d5112c66bf", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.265Z" + }, + { + "id": "79785d32-3918-4fa5-8ffb-27a38e28fc88", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "d5b84d8f-fa2a-4571-b601-bb0cfd528db6", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "54e35441-2b26-4f25-b2a9-29a6ecee2c4f", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "ec909322-ea53-48ce-aa77-19d39ad28e8b", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "9c60f1aa-48e0-4fc9-86fa-ec28ba300680", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "c348f79b-cc81-42a5-9f78-4712159b7fd1", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "9db09200-91d3-4bf4-b4a4-1e5acdbe06d3", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "8d16cc16-1c17-44c1-b6e8-6679425e19e8", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "30dfbc76-5010-462c-aab9-337587984e94", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "7a9c3ee0-b02d-4fef-8e05-cd3c5ca827cf", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "41dd15b1-8c32-4ac9-9c39-a94b921b514e", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "825533f2-ca52-4ca1-9e68-89d0fc4d11e5", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "255c07a2-6573-4c92-b3af-d3ce3ef42f5f", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "a4b8c404-a080-4329-b50f-ec8942ea7f7e", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.625Z" + }, + { + "id": "049bf73b-094b-41b2-87f3-696f38b505b9", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "localhost", + "encrypted": false + }, + "username": { + "value": "localhost", + "encrypted": false + }, + "password": { + "credential_id": "c83dcbbe-2e56-40c4-a2ae-6600159bff6b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:53.756Z" + }, + { + "id": "0b675807-8cb6-44cd-ba56-17b87cd8a493", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "63c2b598-8a90-4450-90f9-d47b0a5c85f6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.631Z" + }, + { + "id": "597074ae-9800-4409-91c3-1408410d1c6c", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "928a1535-6acc-48bf-afc7-1e3ae2244a33", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "a63f7287-37f6-414e-8889-b462eb0b57be", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "6ff92d12-603a-4549-8b9e-9ac1b92e83f5", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "d2674a10-11c2-4a28-81db-1c08cac1fbe0", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "6ab109a4-6f83-4b14-883e-c8c05f46f9c9", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "0e5dcd88-49a1-4d7f-8f10-34d41bed45a5", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "b27b0ee7-4fdb-4d8e-9d81-2289498a64f0", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "7a2964c8-03a4-48a1-99d4-7a25b61462f3", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "3fcf6c9b-bbf8-45f9-8840-87bddcdddc0f", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "15074c6a-c8f5-409e-9f9b-349152bd5f66", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "2448c268-6dfd-43a6-9555-f68df51b45b6", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "e4cdf417-b76f-4123-ae6c-41f9667f5669", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "b2c64855-286f-47f5-b790-9fe2cb1e6695", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "ed1aa47d-55b8-42d4-9469-82d8f92ad4d2", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "3e89cd97-66b5-4ea7-b14f-e590b12e19c4", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "480a763d-7773-43ef-83df-1124a96b1cab", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.635Z" + }, + { + "id": "57b35a07-ae7f-46f1-91ed-d34d0273e5bc", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "inventory_management", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "93da8ad2-d11c-42c6-ba7f-ac0c7be23251", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-22T10:27:25.819Z" + }, + { + "id": "288a7b6d-b625-4005-93dc-dcd7a8653b24", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "cc151dc1-999e-42b2-93d0-072fa91be3b2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.643Z" + }, + { + "id": "840bc336-5bad-4442-9305-3355bf5940f4", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "1da83b26-ecef-44f4-b8ca-50e4641656d2", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "83fcf4c6-ec28-4d1b-8bc9-9a4df406b9d1", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "200d45fe-aad3-4add-b4ba-751e54521f14", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "63a0cbae-327e-4ed5-b76f-5842818e84c6", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "cd7e82ec-b280-4a94-9850-159e35af72b3", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "e880b9ea-a2b2-417f-a164-f1d834506323", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e91edce3-9ecb-4026-a47a-591a39465333", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "86d931b7-edf3-4b21-baaf-b150f8dc4fc0", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "8b5a287f-08dd-42c1-9179-0a55cd4f7310", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "8163b518-d9ef-4714-b33f-8537c0a48903", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "e3ef7c7b-fed2-44c0-87b2-55283ac90e75", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "7b54ce24-7ca8-414a-a72c-d50950eb3949", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "4badeb69-2c38-4c4e-80f3-fc3f58ec2223", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "6c514b05-e8d2-4d81-ac64-61d4d09191a4", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "adef1faa-4651-478f-a834-1934b4c61a99", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "ebfcf35f-2955-4212-967f-cebcddf16c8a", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "220eb433-49a8-4d49-84c4-f285536e3868", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "6dbc8c78-986e-4079-bbfb-ce4a200b4bf5", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "7da7ea08-cf60-4404-9031-c83776671656", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "0faaacfa-d389-4e66-ac7f-8c93afc5a13e", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "019dd8be-5efd-4428-9bee-a389486c5a32", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "e345b259-fce4-4b2f-8b19-719427b4eb31", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "8e7ef01c-7c06-47a4-8db2-e45357b24ba1", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "04c7d955-12a3-451f-a016-c597724f8cd9", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "b9b7047b-000c-47cf-bd68-7d6dfbdea44b", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "5a4cc34a-da23-4a08-badd-bb26130a5913", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "8fee3e7e-7d30-4fe2-9342-ddb09ad7b6e1", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "3c9adfd7-1064-4999-acb6-b94c5196cc72", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "4f7e0db0-c05a-4a5b-a99b-fdb170901049", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "106e6bb8-7d31-4028-a436-2db539aa3ec1", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "31785b20-89f8-4de5-bf54-1debc1ca261a", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.058Z", + "updatedAt": "2023-09-26T04:59:51.058Z" + }, + { + "id": "6ad412e2-170b-42a5-895f-f841ec47e3c5", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "0cc48002-fd62-4b80-a02a-a04329030e7d", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.063Z", + "updatedAt": "2023-09-27T06:59:36.470Z" + }, + { + "id": "907f19fe-d074-4cd7-adb5-5cb3353d855c", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "4175f457-72d6-4838-b23a-895c9f1479cf", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.068Z", + "updatedAt": "2023-09-26T04:59:51.068Z" + }, + { + "id": "b3f1ca23-5dc4-441a-9ccf-608db6d746e7", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "78b3f9e0-8124-4d37-8da3-788d35f9f4d3", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "d85fe433-175b-42b6-afda-4eacc1398a22", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "d3181e60-88eb-4ed2-8234-877abb1cca21", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "fc2da525-f539-454c-824a-8fda6127e9e0", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "3e8cbe50-7a5b-44ba-b366-b80ffee166ff", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "0899c00c-8a3b-4d41-937c-1925c8958297", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "e05b1995-20c8-4f02-a62c-bb2478baf4ef", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "2358c3c3-e4d1-400f-9069-20186bbdb0a7", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "65c6b204-5842-490b-9ec6-81e52146ab69", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "08f74263-9282-4214-bb80-fc71196cd104", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "43b65b50-ddd3-4cdc-8579-b55a404717be", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "035e7958-ac6f-4873-9df1-8c487eeb4d8f", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "2e84b8b5-e7ae-41ca-86bb-4a0d75e3cdbd", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "931c6a61-e93e-42f8-88d0-3069772a01e4", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "edab30b9-76cf-46b8-818f-1f34ef222a77", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "df31bda5-d452-4446-adb6-ae4292cfd6c9", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "209858f9-b486-4105-ab34-75efb3b3faed", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "e3415f04-a642-4505-b50c-7ea030a8eaeb", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "230ba931-70ab-44e2-b44a-2f60c96c5361", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "aeba310e-6507-4d43-82eb-ba8861067b36", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "f874078b-2a8a-4fe8-b7f8-fdefa9c8beaf", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.905Z", + "updatedAt": "2023-09-27T16:45:57.905Z" + }, + { + "id": "2bfb1a7c-823e-4359-b049-4a61db34b911", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "5bb80934-9d75-49cc-a9a3-3e8bb3b90c34", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "a8648171-928a-48ef-ac7c-2d1cb8bbae6d", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7fd0ea56-a4c5-421c-ac04-c707fd30037a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.609Z" + }, + { + "id": "7078020a-7967-4597-82fc-a31f0b1cf21e", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "991135d2-7671-45ed-b316-63f03b7a34f0", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.615Z" + }, + { + "id": "d3532cce-f05c-4157-b482-d4632ef19c0c", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "35.193.152.84", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "72f1b57e-ed9d-4eb1-b628-d35d0d6bec78", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-10-03T13:27:33.903Z" + }, + { + "id": "a765cdaa-0387-461c-bdaa-63b5353028c0", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "8b910d98-de4b-4e9a-bd11-c9004aa81e48", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.805Z" + }, + { + "id": "bf2ce691-b6e1-442b-a649-793d30a9db60", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c4cb2ddd-2504-4457-971e-18f96940393f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.806Z" + }, + { + "id": "5751c539-28cc-4065-b4f2-f321bbe3ee23", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e97c34c1-13bc-4b5f-b240-cc7acc59541a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.799Z" + }, + { + "id": "512396b8-88c7-4964-a57d-0236373d14fd", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c3673de1-1377-4752-b9a9-743ac1ec76a5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.642Z" + }, + { + "id": "5ea174ed-1189-4646-b93a-05e4ced753b9", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "d9ad9526-6249-4615-b7c6-e0e0f6425658", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:36:58.100Z" + }, + { + "id": "7ab8dd61-1478-4003-b7e3-c9546edcd991", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1ad53f8b-ec0e-4492-ac40-24185178d044", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.650Z" + }, + { + "id": "a2d691b8-0378-4f0a-ade6-f24c6158578d", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "5c4588ab-8993-455a-b005-6554c3873b8c", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "34d29e8e-3494-4281-9a91-b7f6806002c0", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "159e5e0b-3e3d-4306-a6b2-ff9b052172c4", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "f68516ae-87a5-421a-b396-5e7510c16763", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "56da9e7f-bed6-47de-ac08-c0d733f93b5d", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "bc62f0c9-0d44-47ac-a25f-41459e0d5fc4", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "227b7d0e-bf04-4481-b137-ad1b23f9ac77", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "412ce914-c49e-4a81-bcfe-51077d6d17a2", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "cbd1819f-a223-4207-bea6-d6576f57ea2c", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "007bd34a-9123-4936-933c-2433c6edd899", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "a4a1cf81-f577-423e-9544-4ff7796cb289", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "d5073421-b5c5-47b5-b4bc-3cad17267c81", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "ac8cc42f-2ada-41f7-b93f-01c64fb3bde6", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "9b773b6b-ea5b-4b4b-b01e-b4dc90142c94", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "85af5670-1dbe-4e33-9e71-38e3d63f785f", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "323825dd-363e-4e0d-93ff-b7c26ebff3a1", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "51c5eee4-0af2-4c2b-b711-970b5ae74485", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "86a9a4fd-bf05-4770-be53-b8cf2d00c9e6", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "a3d42ef6-7f48-45ad-90a6-c7980d48c12a", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "14b82dee-24eb-4a94-8559-0d9ed6b63d77", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "703288c6-0a61-4744-a16e-687aea9f9a4c", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "76971c88-7f60-4297-a6c9-e3666c7b6758", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "b9220430-0410-4bc6-bfed-605f0f92a2ea", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "d0692d6c-6b12-4e7c-9cce-64039fcb5ca6", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "bb66eed0-6019-43cf-bb27-a3db15ebee93", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "feec231b-a32a-4dba-9ce3-41fc172280d2", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "a14b567d-5d54-49be-89b4-91b2738c1ca2", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "e4213486-4c50-4874-b98b-299b7f94ab65", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "b5583a48-33ea-48bd-83b5-21ce845a0875", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "7f90955a-1301-4773-b110-5970fc71038c", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "872c8f9a-636a-4e22-8386-a544ad4020b9", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.617Z", + "updatedAt": "2023-10-10T09:21:50.617Z" + }, + { + "id": "79a2ecaf-ad5a-4aab-a44c-cb2bc99a8835", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "7fb74b90-480f-4da5-9a34-f7087f8483ab", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.622Z", + "updatedAt": "2023-10-10T09:21:50.622Z" + }, + { + "id": "babdb5a2-4dc2-4a39-909e-1e0b547ca030", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "c896ddb1-70e1-4b57-9739-b7e4069e1262", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.626Z", + "updatedAt": "2023-10-10T09:21:50.626Z" + }, + { + "id": "34f7f3f9-cab0-4e65-bc88-ed4a2e7fbfa1", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "6f2b7870-2f24-435f-badc-eba159c0edc0", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "6ba822d7-b917-49e9-a6ff-9a042fc87c08", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "000997b8-464f-40e8-8f3a-4510ae73fbfe", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "cb19358c-f4b9-4ae0-9ff1-ab5f037f4e7a", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "c67db9b9-9cd7-4daf-9bdd-513229ea2ae8", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "54208746-afd8-4d2d-9fe1-5d2f064c8a07", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "44130f59-3942-4b23-b117-13800ac78881", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "26cd77c6-6387-48ca-92b6-f943a90da690", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "013ef1c8-af8a-4019-b68f-f9a1d2ef7e64", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "66bf88db-3432-455c-9a5e-d5b59378858f", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "18344317-96be-41f3-a4ce-6f769f104323", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "998dc168-7f06-45fe-890e-753fe2788326", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "78812b07-46d1-42f2-828d-51d0a1546358", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "ea038e59-5a5e-40b6-b09a-2356ee1a5e21", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + } + ], + "schemaDetails": { + "multiPages": true, + "multiEnv": true, + "globalDataSources": true + } + } + } + } + ], + "tooljet_version": "2.19.2-ee2.7.0-cloud2.0.9" +} diff --git a/server/templates/inventory-management/manifest.json b/server/templates/inventory-management/manifest.json new file mode 100644 index 0000000000..c75c1e4931 --- /dev/null +++ b/server/templates/inventory-management/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "Inventory management", + "description": "Easily manage, control, and optimise your inventory with our single-page Inventory Management Template.", + "widgets": ["Table", "Chart"], + "sources": [ + { + "name": "Tooljet Database", + "id": "tooljetdb" + } + ], + "id": "inventory-management", + "category": "operations" +} diff --git a/server/templates/lead-management-system/definition.json b/server/templates/lead-management-system/definition.json new file mode 100644 index 0000000000..1c8e42ee2c --- /dev/null +++ b/server/templates/lead-management-system/definition.json @@ -0,0 +1,43519 @@ +{ + "tooljet_database": [ + { + "id": "f28a7771-06c2-4783-a186-05da26ba7822", + "table_name": "lead_management_system", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"f28a7771-06c2-4783-a186-05da26ba7822_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "email", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "company", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "department", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "status", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "deal_amount", + "data_type": "double precision", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 53, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "notes", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "process_state", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "profile_image_url", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "is_active", + "data_type": "boolean", + "column_default": "true", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "created_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "updated_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + } + ], + "app": [ + { + "definition": { + "appV2": { + "id": "38c9c7cc-2ecf-4375-85c7-30279e59e111", + "type": "front-end", + "name": "Lead management system", + "slug": "38c9c7cc-2ecf-4375-85c7-30279e59e111", + "isPublic": false, + "isMaintenanceOn": false, + "icon": "table", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "currentVersionId": null, + "userId": "902c1087-f89d-4f44-bd19-757f6292ee61", + "createdAt": "2023-08-30T07:34:00.592Z", + "updatedAt": "2023-10-10T10:56:46.158Z", + "editingVersion": { + "id": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "ba09a245-f0a4-4dd4-acba-860289dc1b9f", + "pages": { + "ba09a245-f0a4-4dd4-acba-860289dc1b9f": { + "components": { + "d91777ee-6bf7-48a6-bae6-d9c5ddab0057": { + "component": { + "properties": { + "tabs": { + "type": "code", + "displayName": "Tabs", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + } + } + }, + "defaultTab": { + "type": "code", + "displayName": "Default tab", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "hideTabs": { + "type": "toggle", + "displayName": "Hide Tabs", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "renderOnlyActiveTab": { + "type": "toggle", + "displayName": "Render only active tab", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onTabSwitch": { + "displayName": "On tab switch" + } + }, + "styles": { + "highlightColor": { + "type": "color", + "displayName": "Highlight Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "tabWidth": { + "type": "select", + "displayName": "Tab width", + "options": [ + { + "name": "Auto", + "value": "auto" + }, + { + "name": "Equally split", + "value": "split" + } + ] + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "highlightColor": { + "value": "{{queries.colorPalette.data.tabHighlight}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "tabWidth": { + "value": "auto" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "tabs": { + "value": "{{[\n {\n title: `Leads (${queries?.fetchLeadsTransformed?.data?.Lead?.length ?? 0})`,\n id: \"0\",\n backgroundColor: \"#ffffff00\",\n },\n {\n title: `Opportunities (${\n queries?.fetchLeadsTransformed?.data?.Opportunity?.length ?? 0\n })`,\n id: \"1\",\n backgroundColor: \"#ffffff00\",\n },\n {\n title: `Customers (${queries?.fetchLeadsTransformed?.data?.Customer?.length ?? 0})`,\n id: \"2\",\n backgroundColor: \"#ffffff00\",\n },\n {\n title: `Lost (${queries?.fetchLeadsTransformed?.data?.Lost?.length ?? 0})`,\n id: \"3\",\n backgroundColor: \"#ffffff00\",\n },\n]}}" + }, + "defaultTab": { + "value": "0" + }, + "hideTabs": { + "value": false + }, + "renderOnlyActiveTab": { + "value": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "tabs1", + "displayName": "Tabs", + "description": "Tabs component", + "defaultSize": { + "width": 30, + "height": 300 + }, + "defaultChildren": [ + { + "componentName": "Image", + "layout": { + "top": 60, + "left": 37, + "height": 100 + }, + "tab": 0, + "properties": ["source"], + "defaultValue": { + "source": "https://uploads-ssl.webflow.com/6266634263b9179f76b2236e/62666392f32677b5cb2fb84b_logo.svg" + } + }, + { + "componentName": "Text", + "layout": { + "top": 100, + "left": 17, + "height": 50, + "width": 34 + }, + "tab": 1, + "properties": ["text"], + "defaultValue": { + "text": "Open-source low-code framework to build & deploy internal tools within minutes." + } + }, + { + "componentName": "Table", + "layout": { + "top": 0, + "left": 1, + "width": 42, + "height": 250 + }, + "tab": 2 + } + ], + "component": "Tabs", + "actions": [ + { + "handle": "setTab", + "displayName": "Set current tab", + "params": [ + { + "handle": "id", + "displayName": "Id" + } + ] + } + ], + "exposedVariables": { + "currentTab": "" + } + }, + "layouts": { + "desktop": { + "top": 289.99993896484375, + "left": 4.651163218381141, + "width": 39, + "height": 670 + } + }, + "withDefaultChildren": false + }, + "77719e68-8e71-42f8-914c-25073b030678": { + "id": "77719e68-8e71-42f8-914c-25073b030678", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Lead Management System" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text1", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 99.99996566772461, + "left": 4.651162790697675, + "width": 8, + "height": 100 + } + } + }, + "11e03598-cc33-437e-a134-4f54f62596bd": { + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "0" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.fetchLeadsTransformed?.data?.Lead??[]}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true, + "key": "id", + "columnType": "default" + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true, + "columnType": "default", + "key": "name" + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true, + "columnType": "default", + "key": "email" + }, + { + "name": "company", + "id": "500a7631-4b78-4298-b65a-a3c0188ec1c9", + "columnType": "default", + "key": "company" + }, + { + "name": "department", + "id": "15518431-d6f8-4fe8-bb1d-05dbbc96e31f", + "columnType": "default", + "key": "department" + }, + { + "name": "process state", + "id": "8a626d31-5dd0-4fca-bce0-38421af2aa60", + "columnType": "default", + "key": "process_state" + }, + { + "name": "deal amount", + "id": "f3278bd5-7c5c-47dc-bfca-3a059d903ae0", + "columnType": "default", + "key": "deal_amount" + }, + { + "id": "5238456c-aaf6-49c5-a7a8-1d27a02b2972", + "name": "notes", + "key": "notes", + "columnType": "default", + "autogenerated": true + }, + { + "id": "2f8faaf7-ad99-438a-9da6-7edd49cfbd15", + "name": "created at", + "key": "created_at", + "columnType": "default", + "autogenerated": true + }, + { + "id": "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462", + "name": "updated at", + "key": "updated_at", + "columnType": "default", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 77, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 134, + "leftActions": 82, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 216, + "500a7631-4b78-4298-b65a-a3c0188ec1c9": 128, + "f3278bd5-7c5c-47dc-bfca-3a059d903ae0": 127, + "8a626d31-5dd0-4fca-bce0-38421af2aa60": 139, + "15518431-d6f8-4fe8-bb1d-05dbbc96e31f": 186, + "fd02a1af-4589-4b16-bd5d-07ec6f3535d4": 156, + "5238456c-aaf6-49c5-a7a8-1d27a02b2972": 172, + "2f8faaf7-ad99-438a-9da6-7edd49cfbd15": 169, + "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462": 166 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Details", + "events": [ + { + "eventId": "onClick", + "actionId": "set-custom-variable", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2", + "key": "selectedLeadData", + "value": "{{components.table1.selectedRow}}" + }, + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "398504a9-e028-4fbd-9f7a-2c668c1e32bb", + "queryName": "viewProfilePicture", + "parameters": {}, + "runOnlyIf": "{{variables.selectedLeadData.profile_image_url.length > 0}}" + } + ], + "position": "left", + "backgroundColor": "#f1f4ffff", + "textColor": "#5079ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "License", + "company", + "department", + "deal_amount", + "process_state", + "profile_image_url", + "is_active", + "status" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "parent": "d91777ee-6bf7-48a6-bae6-d9c5ddab0057-0", + "layouts": { + "desktop": { + "top": -0.0001138448715209961, + "left": 0.000007547688092455242, + "width": 43, + "height": 625 + } + }, + "withDefaultChildren": false + }, + "2d5c6eb1-3a85-4876-9c45-2e9ed4822ed6": { + "id": "2d5c6eb1-3a85-4876-9c45-2e9ed4822ed6", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{({ negative: \"#EE2C4D\", positive: \"#36AF8B\" })[queries?.fetchLeadsTransformed?.data?.totalAmtDiffSign ?? \"positive\"]}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Total amount ($)" + }, + "primaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalAmtCurrMonth??0}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalAmtDiff ?? 0 + ((queries?.fetchLeadsTransformed?.data?.totalAmtDiff ?? 0) == \"N/A\" ? \"\" : \"%\")}}" + }, + "secondarySignDisplay": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalAmtDiffSign ?? \"positive\"}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics2", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 100.00001275539398, + "left": 60.46512797692787, + "width": 7, + "height": 160 + } + } + }, + "7bb3945b-8e12-4e76-9db4-51a1ad66b206": { + "id": "7bb3945b-8e12-4e76-9db4-51a1ad66b206", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{({ negative: \"#EE2C4D\", positive: \"#36AF8B\" })[queries?.fetchLeadsTransformed?.data?.conversionRateDiffSign ?? \"positive\"]}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Conversion rate" + }, + "primaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.conversionRateCurrMonth ?? 0}}%" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.conversionRateDiff ?? 0 + ((queries?.fetchLeadsTransformed?.data?.conversionRateDiff ?? 0) == \"N/A\" ? \"\" : \"%\")}}" + }, + "secondarySignDisplay": { + "value": "{{queries?.fetchLeadsTransformed?.data?.conversionRateDiffSign ?? \"positive\"}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics3", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 100.0000107884407, + "left": 79.06976597400683, + "width": 7, + "height": 160 + } + } + }, + "247b557d-0089-4f3c-a3e4-a20c14807047": { + "id": "247b557d-0089-4f3c-a3e4-a20c14807047", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{({ negative: \"#EE2C4D\", positive: \"#36AF8B\" })[queries?.fetchLeadsTransformed?.data?.totalDealsDiffSign ?? \"positive\"]}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Total deals" + }, + "primaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalDealsCurrMonth??0}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalDealsDiff ?? 0 + ((queries?.fetchLeadsTransformed?.data?.totalDealsDiff ?? 0) == \"N/A\" ? \"\" : \"%\")}}" + }, + "secondarySignDisplay": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalDealsDiffSign ?? \"positive\"}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics4", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 100.00006800889969, + "left": 41.86045917554739, + "width": 7, + "height": 160 + } + } + }, + "186affc1-eb0c-4019-9deb-7f402ab82836": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Create Lead" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210.00004357099533, + "left": 4.651162014604889, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "3d71b1d1-d94f-46a7-bc38-8ffc6b731fe7": { + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#687076", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconClock" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "d7614303-1a0b-4166-813f-33988e056f08", + "layouts": { + "desktop": { + "top": 0, + "left": 4.651158443900305, + "width": 27.000000000000004, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "1e3ac79e-910f-4205-8aa8-26648037ddfd": { + "id": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4D72FA" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Create Lead" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Launch Modal" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}", + "fxActive": false + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "790px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal2", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 1033.9996483325958, + "left": 4.651157267392136, + "width": 10, + "height": 40 + } + } + }, + "b99110d3-3d57-4724-9726-5834257f9caa": { + "id": "b99110d3-3d57-4724-9726-5834257f9caa", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 330.0000183582306, + "left": 4.651167091543955, + "width": 4, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "726ad799-b6a0-4c99-9320-e3ec21ebcdaf": { + "id": "726ad799-b6a0-4c99-9320-e3ec21ebcdaf", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#D7DBDF", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider2", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 710.0000841617584, + "left": -0.000002195560789070378, + "width": 43, + "height": 10 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "1d32aad7-31cb-414d-b60d-c22f8abc25a7": { + "id": "1d32aad7-31cb-414d-b60d-c22f8abc25a7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 390.0001220703125, + "left": 4.651164183588576, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "e4daee1d-e42a-44af-8333-cf5f4d167686": { + "id": "e4daee1d-e42a-44af-8333-cf5f4d167686", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Company:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 450.0000104904175, + "left": 4.651162094252224, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "24d7ebff-8f06-4a59-bc2d-8b550ca32e33": { + "id": "24d7ebff-8f06-4a59-bc2d-8b550ca32e33", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Department:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 509.99999713897705, + "left": 4.651163785619743, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "221104de-8f22-4e80-974f-9d4adebf1e31": { + "id": "221104de-8f22-4e80-974f-9d4adebf1e31", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Notes:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 569.9998779296875, + "left": 4.651162790697675, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "eff033c6-97f8-43b0-b2a6-e024821c8b69": { + "id": "eff033c6-97f8-43b0-b2a6-e024821c8b69", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Jot down your notes here" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea3", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 569.9997757077217, + "left": 18.604649895355095, + "width": 33, + "height": 120 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "ce17b14c-ef6f-456c-a6d4-65dd298f6fd5": { + "id": "ce17b14c-ef6f-456c-a6d4-65dd298f6fd5", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{\"Lead\"}}" + }, + "values": { + "value": "{{[\"Lead\", \"Opportunity\", \"Customer\", \"Lost\"]}}" + }, + "display_values": { + "value": "{{[\"Lead\", \"Opportunity\", \"Customer\", \"Lost\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 39.99993896484375, + "left": 34.88373555558703, + "width": 9.000000000000002, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "1f6aebed-cfa8-41a7-aff8-76b9d9f3c156": { + "id": "1f6aebed-cfa8-41a7-aff8-76b9d9f3c156", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 39.999969482421875, + "left": 25.581398333603428, + "width": 4, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "97b10b0f-5f2f-492b-a239-9b98d21ae6e1": { + "id": "97b10b0f-5f2f-492b-a239-9b98d21ae6e1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "022531bf-a001-4014-84f0-8966a4e959f2", + "queryName": "profileImageNameGenerator", + "parameters": {}, + "runOnlyIf": "{{components.filepicker1.file.length > 0}}" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "5f068539-6555-4f99-a2c3-51208f1ce820", + "queryName": "createLead", + "parameters": {}, + "runOnlyIf": "{{components.filepicker1.file.length == 0}}" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{!components.textinput5.isValid || !components.textinput6.isValid || !components.textinput7.isValid || !components.dropdown4.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Create Lead" + }, + "loadingState": { + "value": "{{queries.profileImageNameGenerator.isLoading || queries.uploadProfileImage.isLoading || queries.createLead.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button9", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 730.0003061294556, + "left": 79.06976175633015, + "width": 7, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "926663e3-5fc3-47d4-ab62-83ef634373e7": { + "id": "926663e3-5fc3-47d4-ab62-83ef634373e7", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput5.isValid ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput5.value.length > 0 ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput5", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 330.000064432621, + "left": 18.60465781409459, + "width": 33, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "f2e54353-88ad-46a8-8712-7712455410ab": { + "id": "f2e54353-88ad-46a8-8712-7712455410ab", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput6.isValid ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput6.value) ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput6", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 389.99998903274536, + "left": 18.604665776727725, + "width": 33, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "6095f219-1f36-4328-8105-e8612e554a1e": { + "id": "6095f219-1f36-4328-8105-e8612e554a1e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput7.isValid > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput7.value.length > 0 ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput7", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 449.9999651312828, + "left": 18.604654887787326, + "width": 33, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "c166faba-2e82-4dcc-96b6-9fd35a589eaa": { + "id": "c166faba-2e82-4dcc-96b6-9fd35a589eaa", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Deal amount:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 39.99983632564545, + "left": 60.465114434630685, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "d249a032-1856-4a44-b364-77446712f547": { + "id": "d249a032-1856-4a44-b364-77446712f547", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#D7DBDF", + "fxActive": true + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "0" + }, + "maxValue": { + "value": "" + }, + "minValue": { + "value": "0" + }, + "placeholder": { + "value": "{{components.numberinput2.value}}" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput2", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 39.99995422363281, + "left": 74.4186102227264, + "width": 9.000000000000002, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "6542e4cf-485b-45b6-ad14-28f7efc985f6": { + "component": { + "properties": { + "instructionText": { + "type": "code", + "displayName": "Instruction Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "enableDropzone": { + "type": "code", + "displayName": "Use Drop zone", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePicker": { + "type": "code", + "displayName": "Use File Picker", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableMultiple": { + "type": "code", + "displayName": "Pick multiple files", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "maxFileCount": { + "type": "code", + "displayName": "Max file count", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "fileType": { + "type": "code", + "displayName": "Accept file types", + "validation": { + "schema": { + "type": "string" + } + } + }, + "maxSize": { + "type": "code", + "displayName": "Max size limit (Bytes)", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minSize": { + "type": "code", + "displayName": "Min size limit (Bytes)", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "parseContent": { + "type": "toggle", + "displayName": "Parse content", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "parseFileType": { + "type": "select", + "displayName": "File type", + "options": [ + { + "name": "Autodetect from extension", + "value": "auto-detect" + }, + { + "name": "CSV", + "value": "csv" + }, + { + "name": "Microsoft Excel - xls", + "value": "vnd.ms-excel" + }, + { + "name": "Microsoft Excel - xlsx", + "value": "vnd.openxmlformats-officedocument.spreadsheetml.sheet" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onFileSelected": { + "displayName": "On File Selected" + }, + "onFileLoaded": { + "displayName": "On File Loaded" + }, + "onFileDeselected": { + "displayName": "On File Deselected" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{10}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "instructionText": { + "value": "To set a profile picture, select or drag-and-drop an image here" + }, + "enableDropzone": { + "value": "{{true}}" + }, + "enablePicker": { + "value": "{{true}}" + }, + "maxFileCount": { + "value": "{{1}}" + }, + "enableMultiple": { + "value": "{{false}}" + }, + "fileType": { + "value": "{{\"image/*\"}}" + }, + "maxSize": { + "value": "{{1048576}}" + }, + "minSize": { + "value": "{{50}}" + }, + "parseContent": { + "value": "{{false}}" + }, + "parseFileType": { + "value": "auto-detect" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "filepicker1", + "displayName": "File Picker", + "description": "File Picker", + "component": "FilePicker", + "defaultSize": { + "width": 15, + "height": 100 + }, + "actions": [ + { + "handle": "clearFiles", + "displayName": "Clear Files" + } + ], + "exposedVariables": { + "file": [ + { + "name": "", + "content": "", + "dataURL": "", + "type": "", + "parsedData": "" + } + ], + "isParsing": false + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "layouts": { + "desktop": { + "top": 200.00007319450378, + "left": 4.651164913076973, + "width": 39.00000000000001, + "height": 110 + } + }, + "withDefaultChildren": false + }, + "aaea045d-da5c-4855-b203-1aed60ce0331": { + "id": "aaea045d-da5c-4855-b203-1aed60ce0331", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown4.isValid ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown4.value != undefined ? true : \" \"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "" + }, + "values": { + "value": "{{[\n \"Engineering\",\n \"Finance and Accounting\",\n \"Human Resources\",\n \"Marketing\",\n \"Operations\"\n]}}" + }, + "display_values": { + "value": "{{[\n \"Engineering\",\n \"Finance and Accounting\",\n \"Human Resources\",\n \"Marketing\",\n \"Operations\"\n]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a department" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown4", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 509.9999561905861, + "left": 18.604649535674767, + "width": 33, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "a561c580-79d7-4adf-8e40-b22b3c7ea7c6": { + "component": { + "properties": { + "steps": { + "type": "code", + "displayName": "Steps", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "number" + } + } + } + } + } + }, + "currentStep": { + "type": "code", + "displayName": "Current step", + "validation": { + "schema": { + "type": "number" + } + } + }, + "stepsSelectable": { + "type": "toggle", + "displayName": "Steps selectable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + } + }, + "styles": { + "color": { + "type": "color", + "displayName": "Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "theme": { + "type": "select", + "displayName": "Theme", + "options": [ + { + "name": "titles", + "value": "titles" + }, + { + "name": "numbers", + "value": "numbers" + }, + { + "name": "plain", + "value": "plain" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "theme": { + "value": "titles" + }, + "color": { + "value": "#3e63ddff" + }, + "textColor": { + "value": "" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "steps": { + "value": "{{[\n {\n id: 1,\n name: \"Prospect\",\n tooltip: \"Shown interest but have not yet engaged in a significant way.\",\n },\n {\n id: 2,\n name: \"Contacted\",\n tooltip: \"Initial contact has been made with the prospect or lead.\",\n },\n {\n name: \"Qualification\",\n id: 3,\n tooltip:\n \"Evaluating the prospect or lead to determine if they meet the criteria for becoming a customer or client.\",\n },\n {\n id: 4,\n name: \"Proposed\",\n tooltip: \"A proposal or quote has been sent to the prospect.\",\n },\n {\n name: \"Negotiation\",\n id: 5,\n tooltip:\n \"Engaged in negotiations regarding terms, pricing, or other details.\",\n },\n {\n id: 6,\n name: \"Closed\",\n tooltip: \"The relevant processes have been successfully finished.\",\n },\n]}}" + }, + "currentStep": { + "value": "{{1}}" + }, + "stepsSelectable": { + "value": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "steps1", + "displayName": "Steps", + "description": "Steps", + "component": "Steps", + "defaultSize": { + "width": 22, + "height": 38 + }, + "exposedVariables": { + "currentStepId": "3" + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "layouts": { + "desktop": { + "top": 139.9998779296875, + "left": 25.581394055438516, + "width": 30, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "fbb6ed4e-0ef3-474b-a67a-2b1c1fbc6352": { + "component": { + "properties": { + "source": { + "type": "code", + "displayName": "URL", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "alternativeText": { + "type": "code", + "displayName": "Alternative text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "zoomButtons": { + "type": "toggle", + "displayName": "Zoom button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "rotateButton": { + "type": "toggle", + "displayName": "Rotate button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + } + }, + "styles": { + "borderType": { + "type": "select", + "displayName": "Border type", + "options": [ + { + "name": "None", + "value": "none" + }, + { + "name": "Rounded", + "value": "rounded" + }, + { + "name": "Circle", + "value": "rounded-circle" + }, + { + "name": "Thumbnail", + "value": "img-thumbnail" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "imageFit": { + "type": "select", + "displayName": "Image fit", + "options": [ + { + "name": "fill", + "value": "fill" + }, + { + "name": "contain", + "value": "contain" + }, + { + "name": "cover", + "value": "cover" + }, + { + "name": "scale-down", + "value": "scale-down" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderType": { + "value": "rounded" + }, + "padding": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "imageFit": { + "value": "contain" + }, + "backgroundColor": { + "value": "#8888881a" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "source": { + "value": "{{(components?.filepicker1?.file?.length ?? 0) > 0 ? `data:${components.filepicker1.file[0].type};base64,${components.filepicker1.file[0].base64Data}` : \"https://www.svgrepo.com/show/444673/user.svg\"}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "alternativeText": { + "value": "" + }, + "zoomButtons": { + "value": "{{false}}" + }, + "rotateButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "image2", + "displayName": "Image", + "description": "Display an Image", + "defaultSize": { + "width": 3, + "height": 100 + }, + "component": "Image", + "exposedVariables": {} + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "layouts": { + "desktop": { + "top": 30.00005030632019, + "left": 4.651177931779017, + "width": 8, + "height": 150 + } + }, + "withDefaultChildren": false + }, + "1244f123-f82a-4510-b68e-2322ba9989d2": { + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.navbarBg}}", + "fxActive": true + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#3e63ddff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0.000003814697265625, + "left": 0, + "width": 43, + "height": 70 + } + }, + "withDefaultChildren": false + }, + "1587681c-4ad5-4d18-8763-7337cfe983e4": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "{{queries.colorPalette.data.navbarText}}", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": "{{1}}" + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R A N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1244f123-f82a-4510-b68e-2322ba9989d2", + "layouts": { + "desktop": { + "top": 10, + "left": 2.325581718026774, + "width": 6, + "height": 50 + } + }, + "withDefaultChildren": false + }, + "0a161dfe-e17d-4650-ba5b-43b4f115449a": { + "id": "0a161dfe-e17d-4650-ba5b-43b4f115449a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Process State" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text23", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110.00001525878906, + "left": 30.232559333441372, + "width": 26, + "height": 30 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "c174dc3c-f794-4644-8c95-e9640bc8d9f2": { + "id": "c174dc3c-f794-4644-8c95-e9640bc8d9f2", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4D72FA" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Lead Details" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Launch Modal" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "680px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal3", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 1033.9996299743652, + "left": 34.88372772688678, + "width": 10, + "height": 40 + } + } + }, + "eb23948e-fdd3-4e1e-a3af-7c5fddddbe36": { + "id": "eb23948e-fdd3-4e1e-a3af-7c5fddddbe36", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button10", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 620.0000421404839, + "left": 62.79072855600938, + "width": 5, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "ab8eebbe-ebec-41a8-bf19-6c6427b611d1": { + "id": "ab8eebbe-ebec-41a8-bf19-6c6427b611d1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 219.99998474121094, + "left": 4.65116885972232, + "width": 4, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "ebbd7a45-5be3-418e-93c5-4b4e403a0388": { + "id": "ebbd7a45-5be3-418e-93c5-4b4e403a0388", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#D7DBDF", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider3", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 600.0001038908958, + "left": -0.000008123400185411356, + "width": 43, + "height": 10 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "d40bb71b-2068-4cca-8ec3-1d174d53a678": { + "id": "d40bb71b-2068-4cca-8ec3-1d174d53a678", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text25", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 280.000075340271, + "left": 4.651161723813867, + "width": 6, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "c4ca6abc-0515-4523-84b7-bfc4f0914593": { + "id": "c4ca6abc-0515-4523-84b7-bfc4f0914593", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Company:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 340.0000612139702, + "left": 4.651162066979629, + "width": 6, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "bcd2ab3a-3fc0-4ca1-9858-7bec35c579be": { + "id": "bcd2ab3a-3fc0-4ca1-9858-7bec35c579be", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Department:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 399.9999694824219, + "left": 4.651160999837943, + "width": 6, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "ecdbccc0-e55c-465e-bdea-241bccfc98f5": { + "id": "ecdbccc0-e55c-465e-bdea-241bccfc98f5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Notes:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 459.99977111816406, + "left": 4.651162790697675, + "width": 6, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "b7065c88-058e-4729-8fb0-be6d84d41512": { + "id": "b7065c88-058e-4729-8fb0-be6d84d41512", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.notes}}" + }, + "placeholder": { + "value": "Jot down your notes here" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea4", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 460.00009673833847, + "left": 18.604658333496687, + "width": 33, + "height": 120 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "f48c8ca4-9e2c-4c01-9ce2-e825cfa60be2": { + "id": "f48c8ca4-9e2c-4c01-9ce2-e825cfa60be2", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{variables.selectedLeadData.status}}" + }, + "values": { + "value": "{{[\"Lead\", \"Opportunity\", \"Customer\", \"Lost\"]}}" + }, + "display_values": { + "value": "{{[\"Lead\", \"Opportunity\", \"Customer\", \"Lost\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown5", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00000101327896, + "left": 34.88371671699695, + "width": 9.000000000000002, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "4ef90d3f-54a4-4f44-95dd-cfc32cc29a93": { + "id": "4ef90d3f-54a4-4f44-95dd-cfc32cc29a93", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 25.581391369148925, + "width": 4, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "4532bca7-12d4-4fb7-b6f3-b423b77a7701": { + "id": "4532bca7-12d4-4fb7-b6f3-b423b77a7701", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "2b56ad7f-48ec-4232-904b-9705a1d8596a", + "queryName": "updateLead", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{!components.textinput8.isValid || !components.textinput9.isValid || !components.textinput10.isValid || !components.dropdown6.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Save changes" + }, + "loadingState": { + "value": "{{queries.updateLead.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button11", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 620.000394821167, + "left": 76.74418373215283, + "width": 8, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "d6328ff8-6b0c-49ba-a9ef-cb189de1011f": { + "id": "d6328ff8-6b0c-49ba-a9ef-cb189de1011f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput8.isValid > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput8.value.length > 0 ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.name}}" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput8", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 219.99997329711914, + "left": 18.60464157773724, + "width": 33, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "11bb727a-d769-4fd2-ac75-0b812b7c8e1f": { + "id": "11bb727a-d769-4fd2-ac75-0b812b7c8e1f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput9.isValid ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput9.value) ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.email}}" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput9", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 279.999864757061, + "left": 18.604662485981912, + "width": 33, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "7d51263e-8333-40db-97dd-7923590d586e": { + "id": "7d51263e-8333-40db-97dd-7923590d586e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput10.isValid > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput10.value.length > 0 ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.company}}" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput10", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 339.99995666742325, + "left": 18.604662894923663, + "width": 33, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "e15197f1-9db9-45ea-8ffa-2e03dc64fdf8": { + "id": "e15197f1-9db9-45ea-8ffa-2e03dc64fdf8", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Deal amount ($):" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00003242492676, + "left": 60.46511627906977, + "width": 7, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "9e20c0df-0a0c-47a3-8f89-4bcecfad69e3": { + "id": "9e20c0df-0a0c-47a3-8f89-4bcecfad69e3", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#D7DBDF", + "fxActive": true + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.deal_amount}}" + }, + "maxValue": { + "value": "" + }, + "minValue": { + "value": "0" + }, + "placeholder": { + "value": "{{components.numberinput3.value}}" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput3", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 40.00006103515625, + "left": 76.74418821238375, + "width": 8, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "16a4efda-026a-441f-b391-afb702fd00e4": { + "id": "16a4efda-026a-441f-b391-afb702fd00e4", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown6.isValid ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff9999ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown6.value != undefined ? true : \" \"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{variables.selectedLeadData.department}}" + }, + "values": { + "value": "{{[\n \"Engineering\",\n \"Finance and Accounting\",\n \"Human Resources\",\n \"Marketing\",\n \"Operations\"\n]}}" + }, + "display_values": { + "value": "{{[\n \"Engineering\",\n \"Finance and Accounting\",\n \"Human Resources\",\n \"Marketing\",\n \"Operations\"\n]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a department" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown6", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 399.9998946785927, + "left": 18.604647451251065, + "width": 33, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "032a2530-e157-465a-ae08-fac913a85b1a": { + "id": "032a2530-e157-465a-ae08-fac913a85b1a", + "component": { + "properties": { + "steps": { + "type": "code", + "displayName": "Steps", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "number" + } + } + } + } + } + }, + "currentStep": { + "type": "code", + "displayName": "Current step", + "validation": { + "schema": { + "type": "number" + } + } + }, + "stepsSelectable": { + "type": "toggle", + "displayName": "Steps selectable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + } + }, + "styles": { + "color": { + "type": "color", + "displayName": "Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "theme": { + "type": "select", + "displayName": "Theme", + "options": [ + { + "name": "titles", + "value": "titles" + }, + { + "name": "numbers", + "value": "numbers" + }, + { + "name": "plain", + "value": "plain" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "theme": { + "value": "titles" + }, + "color": { + "value": "#3e63ddff" + }, + "textColor": { + "value": "" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "steps": { + "value": "{{[\n {\n id: 1,\n name: \"Prospect\",\n tooltip: \"Shown interest but have not yet engaged in a significant way.\",\n },\n {\n id: 2,\n name: \"Contacted\",\n tooltip: \"Initial contact has been made with the prospect or lead.\",\n },\n {\n name: \"Qualification\",\n id: 3,\n tooltip:\n \"Evaluating the prospect or lead to determine if they meet the criteria for becoming a customer or client.\",\n },\n {\n id: 4,\n name: \"Proposed\",\n tooltip: \"A proposal or quote has been sent to the prospect.\",\n },\n {\n name: \"Negotiation\",\n id: 5,\n tooltip:\n \"Engaged in negotiations regarding terms, pricing, or other details.\",\n },\n {\n id: 6,\n name: \"Closed\",\n tooltip: \"The relevant processes have been successfully finished.\",\n },\n]}}" + }, + "currentStep": { + "value": "{{({\n Prospect: 1,\n Contacted: 2,\n Qualification: 3,\n Proposed: 4,\n Negotiation: 5,\n Closed: 6,\n})[variables.selectedLeadData.process_state]}}" + }, + "stepsSelectable": { + "value": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "steps2", + "displayName": "Steps", + "description": "Steps", + "component": "Steps", + "defaultSize": { + "width": 22, + "height": 38 + }, + "exposedVariables": { + "currentStepId": "3" + } + }, + "layouts": { + "desktop": { + "top": 139.99987775087357, + "left": 25.58139713879437, + "width": 30, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "0c5e3762-54e4-460e-9f3e-624b7b09bdf6": { + "id": "0c5e3762-54e4-460e-9f3e-624b7b09bdf6", + "component": { + "properties": { + "source": { + "type": "code", + "displayName": "URL", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "alternativeText": { + "type": "code", + "displayName": "Alternative text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "zoomButtons": { + "type": "toggle", + "displayName": "Zoom button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "rotateButton": { + "type": "toggle", + "displayName": "Rotate button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + } + }, + "styles": { + "borderType": { + "type": "select", + "displayName": "Border type", + "options": [ + { + "name": "None", + "value": "none" + }, + { + "name": "Rounded", + "value": "rounded" + }, + { + "name": "Circle", + "value": "rounded-circle" + }, + { + "name": "Thumbnail", + "value": "img-thumbnail" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "imageFit": { + "type": "select", + "displayName": "Image fit", + "options": [ + { + "name": "fill", + "value": "fill" + }, + { + "name": "contain", + "value": "contain" + }, + { + "name": "cover", + "value": "cover" + }, + { + "name": "scale-down", + "value": "scale-down" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderType": { + "value": "rounded" + }, + "padding": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "imageFit": { + "value": "contain" + }, + "backgroundColor": { + "value": "#8888881a" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "source": { + "value": "{{variables.selectedLeadData.profile_image_url.length > 0 ? queries.viewProfilePicture.data.url : \"https://www.svgrepo.com/show/444673/user.svg\"}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.viewProfilePicture.isLoading}}", + "fxActive": true + }, + "alternativeText": { + "value": "Failed to load profile picture!" + }, + "zoomButtons": { + "value": "{{false}}" + }, + "rotateButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "image3", + "displayName": "Image", + "description": "Display an Image", + "defaultSize": { + "width": 3, + "height": 100 + }, + "component": "Image", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 29.99999976158142, + "left": 4.651169942406964, + "width": 8, + "height": 150 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "b7f80607-2991-42ce-a679-70bc57992e7a": { + "id": "b7f80607-2991-42ce-a679-70bc57992e7a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Process State" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 109.99990844726562, + "left": 30.232558139534884, + "width": 26, + "height": 30 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "7a869a2f-eb9a-4fd6-bb7b-d5ce8af5e80f": { + "id": "7a869a2f-eb9a-4fd6-bb7b-d5ce8af5e80f", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button12", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 730.0000610351562, + "left": 65.11627906976744, + "width": 5, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "b146390c-66db-46b0-9df3-f765c57d425b": { + "id": "b146390c-66db-46b0-9df3-f765c57d425b", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "0" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.fetchLeadsTransformed?.data?.Opportunity??[]}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true, + "key": "id", + "columnType": "default" + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true, + "columnType": "default", + "key": "name" + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true, + "columnType": "default", + "key": "email" + }, + { + "name": "company", + "id": "500a7631-4b78-4298-b65a-a3c0188ec1c9", + "columnType": "default", + "key": "company" + }, + { + "name": "department", + "id": "15518431-d6f8-4fe8-bb1d-05dbbc96e31f", + "columnType": "default", + "key": "department" + }, + { + "name": "process state", + "id": "8a626d31-5dd0-4fca-bce0-38421af2aa60", + "columnType": "default", + "key": "process_state" + }, + { + "name": "deal amount", + "id": "f3278bd5-7c5c-47dc-bfca-3a059d903ae0", + "columnType": "default", + "key": "deal_amount" + }, + { + "id": "5238456c-aaf6-49c5-a7a8-1d27a02b2972", + "name": "notes", + "key": "notes", + "columnType": "default", + "autogenerated": true + }, + { + "id": "2f8faaf7-ad99-438a-9da6-7edd49cfbd15", + "name": "created at", + "key": "created_at", + "columnType": "default", + "autogenerated": true + }, + { + "id": "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462", + "name": "updated at", + "key": "updated_at", + "columnType": "default", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 111, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 221, + "leftActions": 82, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 303, + "500a7631-4b78-4298-b65a-a3c0188ec1c9": 243, + "f3278bd5-7c5c-47dc-bfca-3a059d903ae0": 133, + "8a626d31-5dd0-4fca-bce0-38421af2aa60": 149, + "15518431-d6f8-4fe8-bb1d-05dbbc96e31f": 174, + "fd02a1af-4589-4b16-bd5d-07ec6f3535d4": 156 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Details", + "events": [ + { + "eventId": "onClick", + "actionId": "set-custom-variable", + "message": "Hello world!", + "alertType": "info", + "key": "selectedLeadData", + "value": "{{components.table2.selectedRow}}" + }, + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "398504a9-e028-4fbd-9f7a-2c668c1e32bb", + "queryName": "viewProfilePicture", + "parameters": {}, + "runOnlyIf": "{{variables.selectedLeadData.profile_image_url.length > 0}}" + } + ], + "position": "left", + "backgroundColor": "#f1f4ffff", + "textColor": "#5079ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "License", + "company", + "department", + "deal_amount", + "process_state", + "profile_image_url", + "is_active", + "status" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table2", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0.000012159347534179688, + "left": 0.0000019460754536737568, + "width": 43, + "height": 625 + } + }, + "parent": "d91777ee-6bf7-48a6-bae6-d9c5ddab0057-1" + }, + "f33bc72b-cde6-4cbe-9d77-a0be4cf1922e": { + "id": "f33bc72b-cde6-4cbe-9d77-a0be4cf1922e", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "0" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.fetchLeadsTransformed?.data?.Customer??[]}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true, + "key": "id", + "columnType": "default" + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true, + "columnType": "default", + "key": "name" + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true, + "columnType": "default", + "key": "email" + }, + { + "name": "company", + "id": "500a7631-4b78-4298-b65a-a3c0188ec1c9", + "columnType": "default", + "key": "company" + }, + { + "name": "department", + "id": "15518431-d6f8-4fe8-bb1d-05dbbc96e31f", + "columnType": "default", + "key": "department" + }, + { + "name": "process state", + "id": "8a626d31-5dd0-4fca-bce0-38421af2aa60", + "columnType": "default", + "key": "process_state" + }, + { + "name": "deal amount", + "id": "f3278bd5-7c5c-47dc-bfca-3a059d903ae0", + "columnType": "default", + "key": "deal_amount" + }, + { + "id": "5238456c-aaf6-49c5-a7a8-1d27a02b2972", + "name": "notes", + "key": "notes", + "columnType": "default", + "autogenerated": true + }, + { + "id": "2f8faaf7-ad99-438a-9da6-7edd49cfbd15", + "name": "created at", + "key": "created_at", + "columnType": "default", + "autogenerated": true + }, + { + "id": "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462", + "name": "updated at", + "key": "updated_at", + "columnType": "default", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 111, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 221, + "leftActions": 82, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 303, + "500a7631-4b78-4298-b65a-a3c0188ec1c9": 243, + "f3278bd5-7c5c-47dc-bfca-3a059d903ae0": 133, + "8a626d31-5dd0-4fca-bce0-38421af2aa60": 149, + "15518431-d6f8-4fe8-bb1d-05dbbc96e31f": 174, + "fd02a1af-4589-4b16-bd5d-07ec6f3535d4": 156 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Details", + "events": [ + { + "eventId": "onClick", + "actionId": "set-custom-variable", + "message": "Hello world!", + "alertType": "info", + "key": "selectedLeadData", + "value": "{{components.table3.selectedRow}}" + }, + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "398504a9-e028-4fbd-9f7a-2c668c1e32bb", + "queryName": "viewProfilePicture", + "parameters": {}, + "debounce": "", + "runOnlyIf": "{{variables.selectedLeadData.profile_image_url.length > 0}}" + } + ], + "position": "left", + "backgroundColor": "#f1f4ffff", + "textColor": "#5079ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "License", + "company", + "department", + "deal_amount", + "process_state", + "profile_image_url", + "is_active", + "status" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table3", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": -0.00003987550735473633, + "left": -0.0000031579780701562754, + "width": 43, + "height": 625 + } + }, + "parent": "d91777ee-6bf7-48a6-bae6-d9c5ddab0057-2" + }, + "8557211b-4340-4de9-aaca-d27136ab10fd": { + "id": "8557211b-4340-4de9-aaca-d27136ab10fd", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "0" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.fetchLeadsTransformed?.data?.Lost??[]}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true, + "key": "id", + "columnType": "default" + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true, + "columnType": "default", + "key": "name" + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true, + "columnType": "default", + "key": "email" + }, + { + "name": "company", + "id": "500a7631-4b78-4298-b65a-a3c0188ec1c9", + "columnType": "default", + "key": "company" + }, + { + "name": "department", + "id": "15518431-d6f8-4fe8-bb1d-05dbbc96e31f", + "columnType": "default", + "key": "department" + }, + { + "name": "process state", + "id": "8a626d31-5dd0-4fca-bce0-38421af2aa60", + "columnType": "default", + "key": "process_state" + }, + { + "name": "deal amount", + "id": "f3278bd5-7c5c-47dc-bfca-3a059d903ae0", + "columnType": "default", + "key": "deal_amount" + }, + { + "id": "5238456c-aaf6-49c5-a7a8-1d27a02b2972", + "name": "notes", + "key": "notes", + "columnType": "default", + "autogenerated": true + }, + { + "id": "2f8faaf7-ad99-438a-9da6-7edd49cfbd15", + "name": "created at", + "key": "created_at", + "columnType": "default", + "autogenerated": true + }, + { + "id": "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462", + "name": "updated at", + "key": "updated_at", + "columnType": "default", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 111, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 221, + "leftActions": 82, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 303, + "500a7631-4b78-4298-b65a-a3c0188ec1c9": 243, + "f3278bd5-7c5c-47dc-bfca-3a059d903ae0": 133, + "8a626d31-5dd0-4fca-bce0-38421af2aa60": 149, + "15518431-d6f8-4fe8-bb1d-05dbbc96e31f": 174, + "fd02a1af-4589-4b16-bd5d-07ec6f3535d4": 156 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Details", + "events": [ + { + "eventId": "onClick", + "actionId": "set-custom-variable", + "message": "Hello world!", + "alertType": "info", + "key": "selectedLeadData", + "value": "{{components.table4.selectedRow}}" + }, + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "398504a9-e028-4fbd-9f7a-2c668c1e32bb", + "queryName": "viewProfilePicture", + "parameters": {}, + "runOnlyIf": "{{variables.selectedLeadData.profile_image_url.length > 0}}" + } + ], + "position": "left", + "backgroundColor": "#f1f4ffff", + "textColor": "#5079ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "License", + "company", + "department", + "deal_amount", + "process_state", + "profile_image_url", + "is_active", + "status" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table4", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": -0.00004315376281738281, + "left": -7.215823494277629e-8, + "width": 43, + "height": 625 + } + }, + "parent": "d91777ee-6bf7-48a6-bae6-d9c5ddab0057-3" + }, + "00fe8322-78b3-48f8-9a22-f0f7a7b152f3": { + "component": { + "properties": { + "data": { + "type": "code", + "displayName": "Svg data", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "data": { + "value": "" + } + }, + "general": { + "tooltip": { + "value": "Click on the points to set Process state." + } + }, + "exposedVariables": {} + }, + "name": "svgimage1", + "displayName": "Svg Image", + "description": "Svg image", + "component": "SvgImage", + "defaultSize": { + "width": 4, + "height": 50 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "layouts": { + "desktop": { + "top": 110.00009155273438, + "left": 90.69767800032412, + "width": 2, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "c554104e-fb35-4394-a2ba-d76160a889da": { + "id": "c554104e-fb35-4394-a2ba-d76160a889da", + "component": { + "properties": { + "data": { + "type": "code", + "displayName": "Svg data", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "data": { + "value": "" + } + }, + "general": { + "tooltip": { + "value": "Click on the points to set Process state." + } + }, + "exposedVariables": {} + }, + "name": "svgimage2", + "displayName": "Svg Image", + "description": "Svg image", + "component": "SvgImage", + "defaultSize": { + "width": 4, + "height": 50 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 110.00006484985352, + "left": 90.69767812888233, + "width": 2, + "height": 30 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + } + }, + "handle": "home", + "name": "Home" + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "5000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": 2400, + "canvasBackgroundColor": "#ffffff", + "backgroundFxQuery": "{{queries.colorPalette.data[\"canvasBg_\"+globals.theme.name]}}" + } + }, + "appId": "38c9c7cc-2ecf-4375-85c7-30279e59e111", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-08-30T07:34:00.601Z", + "updatedAt": "2023-10-11T10:20:30.800Z" + }, + "dataQueries": [ + { + "id": "74286f67-8130-43ad-aaac-a66eb9db92db", + "name": "uploadProfileImage", + "options": { + "maxKeys": 1000, + "transformationLanguage": "javascript", + "enableTransformation": false, + "operation": "upload_object", + "bucket": "datasource-testing", + "key": "{{queries.profileImageNameGenerator.data.fileName}}", + "encoding": "base64", + "contentType": "{{components.filepicker1.file[0].type}}", + "data": "{{components.filepicker1.file[0].base64Data}}", + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "5f068539-6555-4f99-a2c3-51208f1ce820", + "queryName": "createLead", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to upload profile picture of Lead! Please check and try again.", + "alertType": "warning" + } + ] + }, + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "createdAt": "2023-09-14T20:10:24.220Z", + "updatedAt": "2023-09-25T13:04:38.809Z" + }, + { + "id": "022531bf-a001-4014-84f0-8966a4e959f2", + "name": "profileImageNameGenerator", + "options": { + "code": "const file = components.filepicker1.file[0];\nconst fileExtension = file.name.slice(file.name.lastIndexOf(\".\"));\nconst fileName = `lms/img_${moment().valueOf()}${fileExtension}`;\n\nreturn { fileName };", + "hasParamSupport": true, + "parameters": [], + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "74286f67-8130-43ad-aaac-a66eb9db92db", + "queryName": "uploadProfileImage", + "parameters": {} + } + ] + }, + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "createdAt": "2023-09-14T20:14:03.104Z", + "updatedAt": "2023-09-15T12:33:51.625Z" + }, + { + "id": "5f068539-6555-4f99-a2c3-51208f1ce820", + "name": "createLead", + "options": { + "operation": "create_row", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_id": "f28a7771-06c2-4783-a186-05da26ba7822", + "list_rows": {}, + "create_row": { + "0": { + "column": "name", + "value": "{{components.textinput5.value}}" + }, + "1": { + "column": "email", + "value": "{{components.textinput6.value}}" + }, + "2": { + "column": "company", + "value": "{{components.textinput7.value}}" + }, + "3": { + "column": "department", + "value": "{{components.dropdown4.value}}" + }, + "4": { + "column": "status", + "value": "{{components.dropdown2.value}}" + }, + "5": { + "column": "deal_amount", + "value": "{{components.numberinput2.value}}" + }, + "6": { + "column": "notes", + "value": "{{components.textarea3.value}}" + }, + "7": { + "column": "process_state", + "value": "{{({1: \"Prospect\", 2: \"Contacted\", 3: \"Qualification\", 4: \"Proposed\", 5: \"Negotiation\", 6: \"Closed\"})[components.steps1.currentStepId]}}" + }, + "8": { + "column": "profile_image_url", + "value": "{{queries.profileImageNameGenerator.data.fileName}}" + }, + "9": { + "column": "created_at", + "value": "{{moment().format()}}" + }, + "10": { + "column": "updated_at", + "value": "{{moment().format()}}" + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Lead created successfully.", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "2b865230-2854-42df-97a7-2c791e115851", + "queryName": "fetchLeads", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to create Lead! Please check and try again.", + "alertType": "warning" + } + ], + "transformation": "// write your code here\n// return value will be set as data and the original data will be available as rawData\nreturn data.filter(row => row.amount > 1000);" + }, + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "createdAt": "2023-09-14T21:35:39.556Z", + "updatedAt": "2023-09-15T21:03:53.555Z" + }, + { + "id": "2b865230-2854-42df-97a7-2c791e115851", + "name": "fetchLeads", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_id": "f28a7771-06c2-4783-a186-05da26ba7822", + "list_rows": { + "where_filters": { + "14": { + "column": "is_active", + "operator": "eq", + "value": "true", + "id": "14" + } + }, + "order_filters": { + "15": { + "column": "id", + "order": "desc", + "id": "15" + } + } + }, + "transformation": "// write your code here\n// return value will be set as data and the original data will be available as rawData\nreturn data.filter(row => row.amount > 1000);", + "runOnPageLoad": true, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "e167dfa2-fb73-4f74-9031-d1bd1d09dada", + "queryName": "fetchLeadsTransformed", + "parameters": {} + } + ] + }, + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "createdAt": "2023-09-15T12:29:44.699Z", + "updatedAt": "2023-09-15T17:07:41.862Z" + }, + { + "id": "bdb52b5a-6780-4a66-aeac-fcb3d94fd1c6", + "name": "colorPalette", + "options": { + "code": "colorDirectory = {\n btnPrimaryBg: \"#5079ffff\",\n btnPrimaryBorder: \"#ffffff00\",\n btnPrimaryText: \"#ffffffff\",\n btnSecondaryBg: \"#ffffffb3\",\n btnSecondaryBorder: \"#5079ffff\",\n btnSecondaryText: \"#5079ffff\",\n canvasBg_light: \"#ffffff\",\n canvasBg_dark: \"#444444\",\n main: \"#3e63ddff\",\n modalBodyBg: \"#ffffff00\",\n modalHeaderBg: \"#3e63ddff\",\n modalHeaderText: \"#ffffffff\",\n navbarBg: \"#3e63ddff\",\n navbarText: \"#ffffffff\",\n tabHighlight: \"#3e63ddff\",\n};\n\nreturn colorDirectory;", + "hasParamSupport": true, + "parameters": [], + "runOnPageLoad": true + }, + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "createdAt": "2023-09-15T12:35:16.011Z", + "updatedAt": "2023-10-10T10:45:07.650Z" + }, + { + "id": "e167dfa2-fb73-4f74-9031-d1bd1d09dada", + "name": "fetchLeadsTransformed", + "options": { + "code": "const data = queries.fetchLeads.data;\n\n// Function to format numbers with suffixes (e.g., 1.5K)\nfunction formatNumber(num, decimalPlaces = 0) {\n if (num == Infinity) return num;\n\n const suffixes = [\"\", \"K\", \"M\", \"B\"];\n let index = 0;\n\n while (num >= 1e3 && index < suffixes.length - 1) {\n num /= 1e3;\n index++;\n }\n\n return num.toFixed(decimalPlaces) + suffixes[index];\n}\n\n// Get the current month and the previous month\nconst thisMonth = moment();\nconst lastMonth = moment().subtract(1, \"month\");\n\n// Initialize an object to store state-wise data\nconst stateWiseData = {\n Lead: [],\n Opportunity: [],\n Customer: [],\n Lost: [],\n};\n\n// Function to convert NaN value to 0\nfunction convertNanToZero(num) {\n return isNaN(num) ? 0 : num;\n}\n\n// Function to convert Infinity value to N/A and Format\nfunction convertInfinityToNaAndFormat(num, decimalPlaces = 0) {\n return isFinite(num) ? formatNumber(num, decimalPlaces) : \"N/A\";\n}\n\n// Function to determine if a value is negative or positive\nfunction isNegativeOrPositive(value) {\n return value <= 0 ? \"negative\" : \"positive\";\n}\n\n// Function to calculate percentage difference between current and previous values\nfunction calculateDiff(curr, prev) {\n let diff = ((curr - prev) / prev) * 100;\n diff = convertNanToZero(diff);\n return parseFloat(diff.toFixed(2));\n}\n\nlet currLeads = 0;\nlet currDeals = 0;\nlet currAmount = 0;\nlet prevLeads = 0;\nlet prevDeals = 0;\nlet prevAmount = 0;\n\ndata.forEach((row) => {\n stateWiseData[row.status].push(row);\n\n const isCustomer = row.status === \"Customer\";\n\n if (moment(row.created_at).isSame(thisMonth, \"month\")) {\n currLeads++;\n if (isCustomer) {\n currDeals++;\n currAmount += row.deal_amount;\n }\n } else if (moment(row.created_at).isSame(lastMonth, \"month\")) {\n prevLeads++;\n if (isCustomer) {\n prevDeals++;\n prevAmount += row.deal_amount;\n }\n }\n});\n\n// Calculate percentage differences\nconst totalDealsDiff = calculateDiff(currDeals, prevDeals);\nconst totalAmtDiff = calculateDiff(currAmount, prevAmount);\nconst conversionRateCurrMonth = convertNanToZero((currDeals / currLeads) * 100);\nconst conversionRatePrevMonth = convertNanToZero((prevDeals / prevLeads) * 100);\nconst conversionRateDiff = calculateDiff(\n conversionRateCurrMonth,\n conversionRatePrevMonth\n);\n\n// Create, format and return the result object\nreturn {\n ...stateWiseData,\n totalDealsCurrMonth: convertInfinityToNaAndFormat(currDeals),\n totalDealsDiff: convertInfinityToNaAndFormat(totalDealsDiff, 2),\n totalDealsDiffSign: isNegativeOrPositive(totalDealsDiff),\n totalAmtCurrMonth: convertInfinityToNaAndFormat(currAmount, 2),\n totalAmtDiff: convertInfinityToNaAndFormat(totalAmtDiff, 2),\n totalAmtDiffSign: isNegativeOrPositive(totalAmtDiff),\n conversionRateCurrMonth: convertInfinityToNaAndFormat(\n conversionRateCurrMonth,\n 2\n ),\n conversionRateDiff: convertInfinityToNaAndFormat(conversionRateDiff, 2),\n conversionRateDiffSign: isNegativeOrPositive(conversionRateDiff),\n};", + "hasParamSupport": true, + "parameters": [] + }, + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "createdAt": "2023-09-15T17:05:40.115Z", + "updatedAt": "2023-09-19T08:55:22.634Z" + }, + { + "id": "398504a9-e028-4fbd-9f7a-2c668c1e32bb", + "name": "viewProfilePicture", + "options": { + "maxKeys": 1000, + "transformationLanguage": "javascript", + "enableTransformation": false, + "operation": "signed_url_for_get", + "bucket": "datasource-testing", + "key": "{{variables.selectedLeadData.profile_image_url}}" + }, + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "createdAt": "2023-09-15T17:19:27.462Z", + "updatedAt": "2023-10-11T10:19:21.716Z" + }, + { + "id": "2b56ad7f-48ec-4232-904b-9705a1d8596a", + "name": "updateLead", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_id": "f28a7771-06c2-4783-a186-05da26ba7822", + "list_rows": {}, + "update_rows": { + "columns": { + "0": { + "column": "name", + "value": "{{components.textinput8.value}}" + }, + "1": { + "column": "email", + "value": "{{components.textinput9.value}}" + }, + "2": { + "column": "company", + "value": "{{components.textinput10.value}}" + }, + "3": { + "column": "department", + "value": "{{components.dropdown6.value}}" + }, + "4": { + "column": "status", + "value": "{{components.dropdown5.value}}" + }, + "5": { + "column": "deal_amount", + "value": "{{components.numberinput3.value}}" + }, + "6": { + "column": "notes", + "value": "{{components.textarea4.value}}" + }, + "7": { + "column": "process_state", + "value": "{{({1: \"Prospect\", 2: \"Contacted\", 3: \"Qualification\", 4: \"Proposed\", 5: \"Negotiation\", 6: \"Closed\"})[components.steps2.currentStepId]}}" + }, + "11": { + "column": "updated_at", + "value": "{{moment().format()}}" + } + }, + "where_filters": { + "1": { + "column": "id", + "operator": "eq", + "value": "{{variables.selectedLeadData.id}}", + "id": "1" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Lead details updated successfully", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "2b865230-2854-42df-97a7-2c791e115851", + "queryName": "fetchLeads", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to update Lead details! Please check and try again.", + "alertType": "warning" + } + ] + }, + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "createdAt": "2023-09-15T20:56:00.899Z", + "updatedAt": "2023-09-15T21:03:43.309Z" + } + ], + "dataSources": [ + { + "id": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "name": "restapidefault", + "kind": "restapi", + "type": "static", + "pluginId": null, + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-30T07:34:00.604Z", + "updatedAt": "2023-08-30T07:34:00.604Z" + }, + { + "id": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "name": "runjsdefault", + "kind": "runjs", + "type": "static", + "pluginId": null, + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-30T07:34:00.615Z", + "updatedAt": "2023-08-30T07:34:00.615Z" + }, + { + "id": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "name": "tooljetdbdefault", + "kind": "tooljetdb", + "type": "static", + "pluginId": null, + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-30T07:34:00.622Z", + "updatedAt": "2023-08-30T07:34:00.622Z" + }, + { + "id": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "name": "workflowsdefault", + "kind": "workflows", + "type": "static", + "pluginId": null, + "appVersionId": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-30T07:34:00.627Z", + "updatedAt": "2023-08-30T07:34:00.627Z" + }, + { + "id": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "name": "AWS S3", + "kind": "s3", + "type": "default", + "pluginId": null, + "appVersionId": null, + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "scope": "global", + "createdAt": "2023-08-24T16:58:39.241Z", + "updatedAt": "2023-08-24T16:58:39.241Z" + } + ], + "appVersions": [ + { + "id": "3b2dced0-45eb-4544-aa46-3b4ee767a00c", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "ba09a245-f0a4-4dd4-acba-860289dc1b9f", + "pages": { + "ba09a245-f0a4-4dd4-acba-860289dc1b9f": { + "components": { + "d91777ee-6bf7-48a6-bae6-d9c5ddab0057": { + "component": { + "properties": { + "tabs": { + "type": "code", + "displayName": "Tabs", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + } + } + }, + "defaultTab": { + "type": "code", + "displayName": "Default tab", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "hideTabs": { + "type": "toggle", + "displayName": "Hide Tabs", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "renderOnlyActiveTab": { + "type": "toggle", + "displayName": "Render only active tab", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onTabSwitch": { + "displayName": "On tab switch" + } + }, + "styles": { + "highlightColor": { + "type": "color", + "displayName": "Highlight Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "tabWidth": { + "type": "select", + "displayName": "Tab width", + "options": [ + { + "name": "Auto", + "value": "auto" + }, + { + "name": "Equally split", + "value": "split" + } + ] + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "highlightColor": { + "value": "{{queries.colorPalette.data.tabHighlight}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "tabWidth": { + "value": "auto" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "tabs": { + "value": "{{[\n {\n title: `Leads (${queries?.fetchLeadsTransformed?.data?.Lead?.length ?? 0})`,\n id: \"0\",\n backgroundColor: \"#ffffff00\",\n },\n {\n title: `Opportunities (${\n queries?.fetchLeadsTransformed?.data?.Opportunity?.length ?? 0\n })`,\n id: \"1\",\n backgroundColor: \"#ffffff00\",\n },\n {\n title: `Customers (${queries?.fetchLeadsTransformed?.data?.Customer?.length ?? 0})`,\n id: \"2\",\n backgroundColor: \"#ffffff00\",\n },\n {\n title: `Lost (${queries?.fetchLeadsTransformed?.data?.Lost?.length ?? 0})`,\n id: \"3\",\n backgroundColor: \"#ffffff00\",\n },\n]}}" + }, + "defaultTab": { + "value": "0" + }, + "hideTabs": { + "value": false + }, + "renderOnlyActiveTab": { + "value": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "tabs1", + "displayName": "Tabs", + "description": "Tabs component", + "defaultSize": { + "width": 30, + "height": 300 + }, + "defaultChildren": [ + { + "componentName": "Image", + "layout": { + "top": 60, + "left": 37, + "height": 100 + }, + "tab": 0, + "properties": ["source"], + "defaultValue": { + "source": "https://uploads-ssl.webflow.com/6266634263b9179f76b2236e/62666392f32677b5cb2fb84b_logo.svg" + } + }, + { + "componentName": "Text", + "layout": { + "top": 100, + "left": 17, + "height": 50, + "width": 34 + }, + "tab": 1, + "properties": ["text"], + "defaultValue": { + "text": "Open-source low-code framework to build & deploy internal tools within minutes." + } + }, + { + "componentName": "Table", + "layout": { + "top": 0, + "left": 1, + "width": 42, + "height": 250 + }, + "tab": 2 + } + ], + "component": "Tabs", + "actions": [ + { + "handle": "setTab", + "displayName": "Set current tab", + "params": [ + { + "handle": "id", + "displayName": "Id" + } + ] + } + ], + "exposedVariables": { + "currentTab": "" + } + }, + "layouts": { + "desktop": { + "top": 289.99993896484375, + "left": 4.651163218381141, + "width": 39, + "height": 670 + } + }, + "withDefaultChildren": false + }, + "77719e68-8e71-42f8-914c-25073b030678": { + "id": "77719e68-8e71-42f8-914c-25073b030678", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Lead Management System" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text1", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 99.99996566772461, + "left": 4.651162790697675, + "width": 8, + "height": 100 + } + } + }, + "11e03598-cc33-437e-a134-4f54f62596bd": { + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "0" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.fetchLeadsTransformed?.data?.Lead??[]}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true, + "key": "id", + "columnType": "default" + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true, + "columnType": "default", + "key": "name" + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true, + "columnType": "default", + "key": "email" + }, + { + "name": "company", + "id": "500a7631-4b78-4298-b65a-a3c0188ec1c9", + "columnType": "default", + "key": "company" + }, + { + "name": "department", + "id": "15518431-d6f8-4fe8-bb1d-05dbbc96e31f", + "columnType": "default", + "key": "department" + }, + { + "name": "process state", + "id": "8a626d31-5dd0-4fca-bce0-38421af2aa60", + "columnType": "default", + "key": "process_state" + }, + { + "name": "deal amount", + "id": "f3278bd5-7c5c-47dc-bfca-3a059d903ae0", + "columnType": "default", + "key": "deal_amount" + }, + { + "id": "5238456c-aaf6-49c5-a7a8-1d27a02b2972", + "name": "notes", + "key": "notes", + "columnType": "default", + "autogenerated": true + }, + { + "id": "2f8faaf7-ad99-438a-9da6-7edd49cfbd15", + "name": "created at", + "key": "created_at", + "columnType": "default", + "autogenerated": true + }, + { + "id": "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462", + "name": "updated at", + "key": "updated_at", + "columnType": "default", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 77, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 134, + "leftActions": 82, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 216, + "500a7631-4b78-4298-b65a-a3c0188ec1c9": 128, + "f3278bd5-7c5c-47dc-bfca-3a059d903ae0": 127, + "8a626d31-5dd0-4fca-bce0-38421af2aa60": 139, + "15518431-d6f8-4fe8-bb1d-05dbbc96e31f": 186, + "fd02a1af-4589-4b16-bd5d-07ec6f3535d4": 156, + "5238456c-aaf6-49c5-a7a8-1d27a02b2972": 172, + "2f8faaf7-ad99-438a-9da6-7edd49cfbd15": 169, + "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462": 166 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Details", + "events": [ + { + "eventId": "onClick", + "actionId": "set-custom-variable", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2", + "key": "selectedLeadData", + "value": "{{components.table1.selectedRow}}" + }, + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "398504a9-e028-4fbd-9f7a-2c668c1e32bb", + "queryName": "viewProfilePicture", + "parameters": {}, + "runOnlyIf": "{{variables.selectedLeadData.profile_image_url.length > 0}}" + } + ], + "position": "left", + "backgroundColor": "#f1f4ffff", + "textColor": "#5079ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "License", + "company", + "department", + "deal_amount", + "process_state", + "profile_image_url", + "is_active", + "status" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "parent": "d91777ee-6bf7-48a6-bae6-d9c5ddab0057-0", + "layouts": { + "desktop": { + "top": -0.0001138448715209961, + "left": 0.000007547688092455242, + "width": 43, + "height": 625 + } + }, + "withDefaultChildren": false + }, + "2d5c6eb1-3a85-4876-9c45-2e9ed4822ed6": { + "id": "2d5c6eb1-3a85-4876-9c45-2e9ed4822ed6", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{({ negative: \"#EE2C4D\", positive: \"#36AF8B\" })[queries?.fetchLeadsTransformed?.data?.totalAmtDiffSign ?? \"positive\"]}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Total amount ($)" + }, + "primaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalAmtCurrMonth??0}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalAmtDiff ?? 0 + ((queries?.fetchLeadsTransformed?.data?.totalAmtDiff ?? 0) == \"N/A\" ? \"\" : \"%\")}}" + }, + "secondarySignDisplay": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalAmtDiffSign ?? \"positive\"}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics2", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 100.00001275539398, + "left": 60.46512797692787, + "width": 7, + "height": 160 + } + } + }, + "7bb3945b-8e12-4e76-9db4-51a1ad66b206": { + "id": "7bb3945b-8e12-4e76-9db4-51a1ad66b206", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{({ negative: \"#EE2C4D\", positive: \"#36AF8B\" })[queries?.fetchLeadsTransformed?.data?.conversionRateDiffSign ?? \"positive\"]}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Conversion rate" + }, + "primaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.conversionRateCurrMonth ?? 0}}%" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.conversionRateDiff ?? 0 + ((queries?.fetchLeadsTransformed?.data?.conversionRateDiff ?? 0) == \"N/A\" ? \"\" : \"%\")}}" + }, + "secondarySignDisplay": { + "value": "{{queries?.fetchLeadsTransformed?.data?.conversionRateDiffSign ?? \"positive\"}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics3", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 100.0000107884407, + "left": 79.06976597400683, + "width": 7, + "height": 160 + } + } + }, + "247b557d-0089-4f3c-a3e4-a20c14807047": { + "id": "247b557d-0089-4f3c-a3e4-a20c14807047", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{({ negative: \"#EE2C4D\", positive: \"#36AF8B\" })[queries?.fetchLeadsTransformed?.data?.totalDealsDiffSign ?? \"positive\"]}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Total deals" + }, + "primaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalDealsCurrMonth??0}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalDealsDiff ?? 0 + ((queries?.fetchLeadsTransformed?.data?.totalDealsDiff ?? 0) == \"N/A\" ? \"\" : \"%\")}}" + }, + "secondarySignDisplay": { + "value": "{{queries?.fetchLeadsTransformed?.data?.totalDealsDiffSign ?? \"positive\"}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics4", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 100.00006800889969, + "left": 41.86045917554739, + "width": 7, + "height": 160 + } + } + }, + "186affc1-eb0c-4019-9deb-7f402ab82836": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Create Lead" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 210.00004357099533, + "left": 4.651162014604889, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "3d71b1d1-d94f-46a7-bc38-8ffc6b731fe7": { + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#687076", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconClock" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "d7614303-1a0b-4166-813f-33988e056f08", + "layouts": { + "desktop": { + "top": 0, + "left": 4.651158443900305, + "width": 27.000000000000004, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "1e3ac79e-910f-4205-8aa8-26648037ddfd": { + "id": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4D72FA" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Create Lead" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Launch Modal" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}", + "fxActive": false + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "790px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal2", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 1033.9996483325958, + "left": 4.651157267392136, + "width": 10, + "height": 40 + } + } + }, + "b99110d3-3d57-4724-9726-5834257f9caa": { + "id": "b99110d3-3d57-4724-9726-5834257f9caa", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 330.0000183582306, + "left": 4.651167091543955, + "width": 4, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "726ad799-b6a0-4c99-9320-e3ec21ebcdaf": { + "id": "726ad799-b6a0-4c99-9320-e3ec21ebcdaf", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#D7DBDF", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider2", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 710.0000841617584, + "left": -0.000002195560789070378, + "width": 43, + "height": 10 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "1d32aad7-31cb-414d-b60d-c22f8abc25a7": { + "id": "1d32aad7-31cb-414d-b60d-c22f8abc25a7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 390.0001220703125, + "left": 4.651164183588576, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "e4daee1d-e42a-44af-8333-cf5f4d167686": { + "id": "e4daee1d-e42a-44af-8333-cf5f4d167686", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Company:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 450.0000104904175, + "left": 4.651162094252224, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "24d7ebff-8f06-4a59-bc2d-8b550ca32e33": { + "id": "24d7ebff-8f06-4a59-bc2d-8b550ca32e33", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Department:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 509.99999713897705, + "left": 4.651163785619743, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "221104de-8f22-4e80-974f-9d4adebf1e31": { + "id": "221104de-8f22-4e80-974f-9d4adebf1e31", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Notes:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 569.9998779296875, + "left": 4.651162790697675, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "eff033c6-97f8-43b0-b2a6-e024821c8b69": { + "id": "eff033c6-97f8-43b0-b2a6-e024821c8b69", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Jot down your notes here" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea3", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 569.9997757077217, + "left": 18.604649895355095, + "width": 33, + "height": 120 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "ce17b14c-ef6f-456c-a6d4-65dd298f6fd5": { + "id": "ce17b14c-ef6f-456c-a6d4-65dd298f6fd5", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{\"Lead\"}}" + }, + "values": { + "value": "{{[\"Lead\", \"Opportunity\", \"Customer\", \"Lost\"]}}" + }, + "display_values": { + "value": "{{[\"Lead\", \"Opportunity\", \"Customer\", \"Lost\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 39.99993896484375, + "left": 34.88373555558703, + "width": 9.000000000000002, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "1f6aebed-cfa8-41a7-aff8-76b9d9f3c156": { + "id": "1f6aebed-cfa8-41a7-aff8-76b9d9f3c156", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 39.999969482421875, + "left": 25.581398333603428, + "width": 4, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "97b10b0f-5f2f-492b-a239-9b98d21ae6e1": { + "id": "97b10b0f-5f2f-492b-a239-9b98d21ae6e1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "022531bf-a001-4014-84f0-8966a4e959f2", + "queryName": "profileImageNameGenerator", + "parameters": {}, + "runOnlyIf": "{{components.filepicker1.file.length > 0}}" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "5f068539-6555-4f99-a2c3-51208f1ce820", + "queryName": "createLead", + "parameters": {}, + "runOnlyIf": "{{components.filepicker1.file.length == 0}}" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{!components.textinput5.isValid || !components.textinput6.isValid || !components.textinput7.isValid || !components.dropdown4.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Create Lead" + }, + "loadingState": { + "value": "{{queries.profileImageNameGenerator.isLoading || queries.uploadProfileImage.isLoading || queries.createLead.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button9", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 730.0003061294556, + "left": 79.06976175633015, + "width": 7, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "926663e3-5fc3-47d4-ab62-83ef634373e7": { + "id": "926663e3-5fc3-47d4-ab62-83ef634373e7", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput5.isValid ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput5.value.length > 0 ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput5", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 330.000064432621, + "left": 18.60465781409459, + "width": 33, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "f2e54353-88ad-46a8-8712-7712455410ab": { + "id": "f2e54353-88ad-46a8-8712-7712455410ab", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput6.isValid ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput6.value) ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput6", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 389.99998903274536, + "left": 18.604665776727725, + "width": 33, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "6095f219-1f36-4328-8105-e8612e554a1e": { + "id": "6095f219-1f36-4328-8105-e8612e554a1e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput7.isValid > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput7.value.length > 0 ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput7", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 449.9999651312828, + "left": 18.604654887787326, + "width": 33, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "c166faba-2e82-4dcc-96b6-9fd35a589eaa": { + "id": "c166faba-2e82-4dcc-96b6-9fd35a589eaa", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Deal amount:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 39.99983632564545, + "left": 60.465114434630685, + "width": 6, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "d249a032-1856-4a44-b364-77446712f547": { + "id": "d249a032-1856-4a44-b364-77446712f547", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#D7DBDF", + "fxActive": true + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "0" + }, + "maxValue": { + "value": "" + }, + "minValue": { + "value": "0" + }, + "placeholder": { + "value": "{{components.numberinput2.value}}" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput2", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 39.99995422363281, + "left": 74.4186102227264, + "width": 9.000000000000002, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "6542e4cf-485b-45b6-ad14-28f7efc985f6": { + "component": { + "properties": { + "instructionText": { + "type": "code", + "displayName": "Instruction Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "enableDropzone": { + "type": "code", + "displayName": "Use Drop zone", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePicker": { + "type": "code", + "displayName": "Use File Picker", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableMultiple": { + "type": "code", + "displayName": "Pick multiple files", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "maxFileCount": { + "type": "code", + "displayName": "Max file count", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "fileType": { + "type": "code", + "displayName": "Accept file types", + "validation": { + "schema": { + "type": "string" + } + } + }, + "maxSize": { + "type": "code", + "displayName": "Max size limit (Bytes)", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minSize": { + "type": "code", + "displayName": "Min size limit (Bytes)", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "parseContent": { + "type": "toggle", + "displayName": "Parse content", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "parseFileType": { + "type": "select", + "displayName": "File type", + "options": [ + { + "name": "Autodetect from extension", + "value": "auto-detect" + }, + { + "name": "CSV", + "value": "csv" + }, + { + "name": "Microsoft Excel - xls", + "value": "vnd.ms-excel" + }, + { + "name": "Microsoft Excel - xlsx", + "value": "vnd.openxmlformats-officedocument.spreadsheetml.sheet" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onFileSelected": { + "displayName": "On File Selected" + }, + "onFileLoaded": { + "displayName": "On File Loaded" + }, + "onFileDeselected": { + "displayName": "On File Deselected" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{10}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "instructionText": { + "value": "To set a profile picture, select or drag-and-drop an image here" + }, + "enableDropzone": { + "value": "{{true}}" + }, + "enablePicker": { + "value": "{{true}}" + }, + "maxFileCount": { + "value": "{{1}}" + }, + "enableMultiple": { + "value": "{{false}}" + }, + "fileType": { + "value": "{{\"image/*\"}}" + }, + "maxSize": { + "value": "{{1048576}}" + }, + "minSize": { + "value": "{{50}}" + }, + "parseContent": { + "value": "{{false}}" + }, + "parseFileType": { + "value": "auto-detect" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "filepicker1", + "displayName": "File Picker", + "description": "File Picker", + "component": "FilePicker", + "defaultSize": { + "width": 15, + "height": 100 + }, + "actions": [ + { + "handle": "clearFiles", + "displayName": "Clear Files" + } + ], + "exposedVariables": { + "file": [ + { + "name": "", + "content": "", + "dataURL": "", + "type": "", + "parsedData": "" + } + ], + "isParsing": false + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "layouts": { + "desktop": { + "top": 200.00007319450378, + "left": 4.651164913076973, + "width": 39.00000000000001, + "height": 110 + } + }, + "withDefaultChildren": false + }, + "aaea045d-da5c-4855-b203-1aed60ce0331": { + "id": "aaea045d-da5c-4855-b203-1aed60ce0331", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown4.isValid ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown4.value != undefined ? true : \" \"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "" + }, + "values": { + "value": "{{[\n \"Engineering\",\n \"Finance and Accounting\",\n \"Human Resources\",\n \"Marketing\",\n \"Operations\"\n]}}" + }, + "display_values": { + "value": "{{[\n \"Engineering\",\n \"Finance and Accounting\",\n \"Human Resources\",\n \"Marketing\",\n \"Operations\"\n]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a department" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown4", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 509.9999561905861, + "left": 18.604649535674767, + "width": 33, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "a561c580-79d7-4adf-8e40-b22b3c7ea7c6": { + "component": { + "properties": { + "steps": { + "type": "code", + "displayName": "Steps", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "number" + } + } + } + } + } + }, + "currentStep": { + "type": "code", + "displayName": "Current step", + "validation": { + "schema": { + "type": "number" + } + } + }, + "stepsSelectable": { + "type": "toggle", + "displayName": "Steps selectable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + } + }, + "styles": { + "color": { + "type": "color", + "displayName": "Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "theme": { + "type": "select", + "displayName": "Theme", + "options": [ + { + "name": "titles", + "value": "titles" + }, + { + "name": "numbers", + "value": "numbers" + }, + { + "name": "plain", + "value": "plain" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "theme": { + "value": "titles" + }, + "color": { + "value": "#3e63ddff" + }, + "textColor": { + "value": "" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "steps": { + "value": "{{[\n {\n id: 1,\n name: \"Prospect\",\n tooltip: \"Shown interest but have not yet engaged in a significant way.\",\n },\n {\n id: 2,\n name: \"Contacted\",\n tooltip: \"Initial contact has been made with the prospect or lead.\",\n },\n {\n name: \"Qualification\",\n id: 3,\n tooltip:\n \"Evaluating the prospect or lead to determine if they meet the criteria for becoming a customer or client.\",\n },\n {\n id: 4,\n name: \"Proposed\",\n tooltip: \"A proposal or quote has been sent to the prospect.\",\n },\n {\n name: \"Negotiation\",\n id: 5,\n tooltip:\n \"Engaged in negotiations regarding terms, pricing, or other details.\",\n },\n {\n id: 6,\n name: \"Closed\",\n tooltip: \"The relevant processes have been successfully finished.\",\n },\n]}}" + }, + "currentStep": { + "value": "{{1}}" + }, + "stepsSelectable": { + "value": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "steps1", + "displayName": "Steps", + "description": "Steps", + "component": "Steps", + "defaultSize": { + "width": 22, + "height": 38 + }, + "exposedVariables": { + "currentStepId": "3" + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "layouts": { + "desktop": { + "top": 139.9998779296875, + "left": 25.581394055438516, + "width": 30, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "fbb6ed4e-0ef3-474b-a67a-2b1c1fbc6352": { + "component": { + "properties": { + "source": { + "type": "code", + "displayName": "URL", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "alternativeText": { + "type": "code", + "displayName": "Alternative text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "zoomButtons": { + "type": "toggle", + "displayName": "Zoom button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "rotateButton": { + "type": "toggle", + "displayName": "Rotate button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + } + }, + "styles": { + "borderType": { + "type": "select", + "displayName": "Border type", + "options": [ + { + "name": "None", + "value": "none" + }, + { + "name": "Rounded", + "value": "rounded" + }, + { + "name": "Circle", + "value": "rounded-circle" + }, + { + "name": "Thumbnail", + "value": "img-thumbnail" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "imageFit": { + "type": "select", + "displayName": "Image fit", + "options": [ + { + "name": "fill", + "value": "fill" + }, + { + "name": "contain", + "value": "contain" + }, + { + "name": "cover", + "value": "cover" + }, + { + "name": "scale-down", + "value": "scale-down" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderType": { + "value": "rounded" + }, + "padding": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "imageFit": { + "value": "contain" + }, + "backgroundColor": { + "value": "#8888881a" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "source": { + "value": "{{(components?.filepicker1?.file?.length ?? 0) > 0 ? `data:${components.filepicker1.file[0].type};base64,${components.filepicker1.file[0].base64Data}` : \"https://www.svgrepo.com/show/444673/user.svg\"}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "alternativeText": { + "value": "" + }, + "zoomButtons": { + "value": "{{false}}" + }, + "rotateButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "image2", + "displayName": "Image", + "description": "Display an Image", + "defaultSize": { + "width": 3, + "height": 100 + }, + "component": "Image", + "exposedVariables": {} + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "layouts": { + "desktop": { + "top": 30.00005030632019, + "left": 4.651177931779017, + "width": 8, + "height": 150 + } + }, + "withDefaultChildren": false + }, + "1244f123-f82a-4510-b68e-2322ba9989d2": { + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.navbarBg}}", + "fxActive": true + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#3e63ddff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0.000003814697265625, + "left": 0, + "width": 43, + "height": 70 + } + }, + "withDefaultChildren": false + }, + "1587681c-4ad5-4d18-8763-7337cfe983e4": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "{{queries.colorPalette.data.navbarText}}", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": "{{1}}" + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R A N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "1244f123-f82a-4510-b68e-2322ba9989d2", + "layouts": { + "desktop": { + "top": 10, + "left": 2.325581718026774, + "width": 6, + "height": 50 + } + }, + "withDefaultChildren": false + }, + "0a161dfe-e17d-4650-ba5b-43b4f115449a": { + "id": "0a161dfe-e17d-4650-ba5b-43b4f115449a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Process State" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text23", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110.00001525878906, + "left": 30.232559333441372, + "width": 26, + "height": 30 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "c174dc3c-f794-4644-8c95-e9640bc8d9f2": { + "id": "c174dc3c-f794-4644-8c95-e9640bc8d9f2", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "{{queries.colorPalette.data.modalHeaderBg}}", + "fxActive": true + }, + "headerTextColor": { + "value": "{{queries.colorPalette.data.modalHeaderText}}", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "{{queries.colorPalette.data.modalBodyBg}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4D72FA" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Lead Details" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Launch Modal" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "680px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal3", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 1033.9996299743652, + "left": 34.88372772688678, + "width": 10, + "height": 40 + } + } + }, + "eb23948e-fdd3-4e1e-a3af-7c5fddddbe36": { + "id": "eb23948e-fdd3-4e1e-a3af-7c5fddddbe36", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button10", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 620.0000421404839, + "left": 62.79072855600938, + "width": 5, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "ab8eebbe-ebec-41a8-bf19-6c6427b611d1": { + "id": "ab8eebbe-ebec-41a8-bf19-6c6427b611d1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 219.99998474121094, + "left": 4.65116885972232, + "width": 4, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "ebbd7a45-5be3-418e-93c5-4b4e403a0388": { + "id": "ebbd7a45-5be3-418e-93c5-4b4e403a0388", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#D7DBDF", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider3", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 600.0001038908958, + "left": -0.000008123400185411356, + "width": 43, + "height": 10 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "d40bb71b-2068-4cca-8ec3-1d174d53a678": { + "id": "d40bb71b-2068-4cca-8ec3-1d174d53a678", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text25", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 280.000075340271, + "left": 4.651161723813867, + "width": 6, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "c4ca6abc-0515-4523-84b7-bfc4f0914593": { + "id": "c4ca6abc-0515-4523-84b7-bfc4f0914593", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Company:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 340.0000612139702, + "left": 4.651162066979629, + "width": 6, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "bcd2ab3a-3fc0-4ca1-9858-7bec35c579be": { + "id": "bcd2ab3a-3fc0-4ca1-9858-7bec35c579be", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Department:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 399.9999694824219, + "left": 4.651160999837943, + "width": 6, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "ecdbccc0-e55c-465e-bdea-241bccfc98f5": { + "id": "ecdbccc0-e55c-465e-bdea-241bccfc98f5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Notes:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 459.99977111816406, + "left": 4.651162790697675, + "width": 6, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "b7065c88-058e-4729-8fb0-be6d84d41512": { + "id": "b7065c88-058e-4729-8fb0-be6d84d41512", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.notes}}" + }, + "placeholder": { + "value": "Jot down your notes here" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea4", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 460.00009673833847, + "left": 18.604658333496687, + "width": 33, + "height": 120 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "f48c8ca4-9e2c-4c01-9ce2-e825cfa60be2": { + "id": "f48c8ca4-9e2c-4c01-9ce2-e825cfa60be2", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{variables.selectedLeadData.status}}" + }, + "values": { + "value": "{{[\"Lead\", \"Opportunity\", \"Customer\", \"Lost\"]}}" + }, + "display_values": { + "value": "{{[\"Lead\", \"Opportunity\", \"Customer\", \"Lost\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown5", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00000101327896, + "left": 34.88371671699695, + "width": 9.000000000000002, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "4ef90d3f-54a4-4f44-95dd-cfc32cc29a93": { + "id": "4ef90d3f-54a4-4f44-95dd-cfc32cc29a93", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 25.581391369148925, + "width": 4, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "4532bca7-12d4-4fb7-b6f3-b423b77a7701": { + "id": "4532bca7-12d4-4fb7-b6f3-b423b77a7701", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "2b56ad7f-48ec-4232-904b-9705a1d8596a", + "queryName": "updateLead", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnPrimaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{!components.textinput8.isValid || !components.textinput9.isValid || !components.textinput10.isValid || !components.dropdown6.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Save changes" + }, + "loadingState": { + "value": "{{queries.updateLead.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button11", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 620.000394821167, + "left": 76.74418373215283, + "width": 8, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "d6328ff8-6b0c-49ba-a9ef-cb189de1011f": { + "id": "d6328ff8-6b0c-49ba-a9ef-cb189de1011f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput8.isValid > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput8.value.length > 0 ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.name}}" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput8", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 219.99997329711914, + "left": 18.60464157773724, + "width": 33, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "11bb727a-d769-4fd2-ac75-0b812b7c8e1f": { + "id": "11bb727a-d769-4fd2-ac75-0b812b7c8e1f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput9.isValid ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput9.value) ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.email}}" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput9", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 279.999864757061, + "left": 18.604662485981912, + "width": 33, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "7d51263e-8333-40db-97dd-7923590d586e": { + "id": "7d51263e-8333-40db-97dd-7923590d586e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput10.isValid > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput10.value.length > 0 ? true : \" \"}}" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.company}}" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput10", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 339.99995666742325, + "left": 18.604662894923663, + "width": 33, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "e15197f1-9db9-45ea-8ffa-2e03dc64fdf8": { + "id": "e15197f1-9db9-45ea-8ffa-2e03dc64fdf8", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Deal amount ($):" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40.00003242492676, + "left": 60.46511627906977, + "width": 7, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "9e20c0df-0a0c-47a3-8f89-4bcecfad69e3": { + "id": "9e20c0df-0a0c-47a3-8f89-4bcecfad69e3", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#D7DBDF", + "fxActive": true + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{variables.selectedLeadData.deal_amount}}" + }, + "maxValue": { + "value": "" + }, + "minValue": { + "value": "0" + }, + "placeholder": { + "value": "{{components.numberinput3.value}}" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput3", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 40.00006103515625, + "left": 76.74418821238375, + "width": 8, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "16a4efda-026a-441f-b391-afb702fd00e4": { + "id": "16a4efda-026a-441f-b391-afb702fd00e4", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown6.isValid ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff9999ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown6.value != undefined ? true : \" \"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{variables.selectedLeadData.department}}" + }, + "values": { + "value": "{{[\n \"Engineering\",\n \"Finance and Accounting\",\n \"Human Resources\",\n \"Marketing\",\n \"Operations\"\n]}}" + }, + "display_values": { + "value": "{{[\n \"Engineering\",\n \"Finance and Accounting\",\n \"Human Resources\",\n \"Marketing\",\n \"Operations\"\n]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a department" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown6", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 399.9998946785927, + "left": 18.604647451251065, + "width": 33, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "032a2530-e157-465a-ae08-fac913a85b1a": { + "id": "032a2530-e157-465a-ae08-fac913a85b1a", + "component": { + "properties": { + "steps": { + "type": "code", + "displayName": "Steps", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "number" + } + } + } + } + } + }, + "currentStep": { + "type": "code", + "displayName": "Current step", + "validation": { + "schema": { + "type": "number" + } + } + }, + "stepsSelectable": { + "type": "toggle", + "displayName": "Steps selectable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + } + }, + "styles": { + "color": { + "type": "color", + "displayName": "Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "theme": { + "type": "select", + "displayName": "Theme", + "options": [ + { + "name": "titles", + "value": "titles" + }, + { + "name": "numbers", + "value": "numbers" + }, + { + "name": "plain", + "value": "plain" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "theme": { + "value": "titles" + }, + "color": { + "value": "#3e63ddff" + }, + "textColor": { + "value": "" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "steps": { + "value": "{{[\n {\n id: 1,\n name: \"Prospect\",\n tooltip: \"Shown interest but have not yet engaged in a significant way.\",\n },\n {\n id: 2,\n name: \"Contacted\",\n tooltip: \"Initial contact has been made with the prospect or lead.\",\n },\n {\n name: \"Qualification\",\n id: 3,\n tooltip:\n \"Evaluating the prospect or lead to determine if they meet the criteria for becoming a customer or client.\",\n },\n {\n id: 4,\n name: \"Proposed\",\n tooltip: \"A proposal or quote has been sent to the prospect.\",\n },\n {\n name: \"Negotiation\",\n id: 5,\n tooltip:\n \"Engaged in negotiations regarding terms, pricing, or other details.\",\n },\n {\n id: 6,\n name: \"Closed\",\n tooltip: \"The relevant processes have been successfully finished.\",\n },\n]}}" + }, + "currentStep": { + "value": "{{({\n Prospect: 1,\n Contacted: 2,\n Qualification: 3,\n Proposed: 4,\n Negotiation: 5,\n Closed: 6,\n})[variables.selectedLeadData.process_state]}}" + }, + "stepsSelectable": { + "value": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "steps2", + "displayName": "Steps", + "description": "Steps", + "component": "Steps", + "defaultSize": { + "width": 22, + "height": 38 + }, + "exposedVariables": { + "currentStepId": "3" + } + }, + "layouts": { + "desktop": { + "top": 139.99987775087357, + "left": 25.58139713879437, + "width": 30, + "height": 40 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "0c5e3762-54e4-460e-9f3e-624b7b09bdf6": { + "id": "0c5e3762-54e4-460e-9f3e-624b7b09bdf6", + "component": { + "properties": { + "source": { + "type": "code", + "displayName": "URL", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "alternativeText": { + "type": "code", + "displayName": "Alternative text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "zoomButtons": { + "type": "toggle", + "displayName": "Zoom button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "rotateButton": { + "type": "toggle", + "displayName": "Rotate button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + } + }, + "styles": { + "borderType": { + "type": "select", + "displayName": "Border type", + "options": [ + { + "name": "None", + "value": "none" + }, + { + "name": "Rounded", + "value": "rounded" + }, + { + "name": "Circle", + "value": "rounded-circle" + }, + { + "name": "Thumbnail", + "value": "img-thumbnail" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "imageFit": { + "type": "select", + "displayName": "Image fit", + "options": [ + { + "name": "fill", + "value": "fill" + }, + { + "name": "contain", + "value": "contain" + }, + { + "name": "cover", + "value": "cover" + }, + { + "name": "scale-down", + "value": "scale-down" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderType": { + "value": "rounded" + }, + "padding": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "imageFit": { + "value": "contain" + }, + "backgroundColor": { + "value": "#8888881a" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "source": { + "value": "{{variables.selectedLeadData.profile_image_url.length > 0 ? queries.viewProfilePicture.data.url : \"https://www.svgrepo.com/show/444673/user.svg\"}}" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.viewProfilePicture.isLoading}}", + "fxActive": true + }, + "alternativeText": { + "value": "Failed to load profile picture!" + }, + "zoomButtons": { + "value": "{{false}}" + }, + "rotateButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "image3", + "displayName": "Image", + "description": "Display an Image", + "defaultSize": { + "width": 3, + "height": 100 + }, + "component": "Image", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 29.99999976158142, + "left": 4.651169942406964, + "width": 8, + "height": 150 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "b7f80607-2991-42ce-a679-70bc57992e7a": { + "id": "b7f80607-2991-42ce-a679-70bc57992e7a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Process State" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 109.99990844726562, + "left": 30.232558139534884, + "width": 26, + "height": 30 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + "7a869a2f-eb9a-4fd6-bb7b-d5ce8af5e80f": { + "id": "7a869a2f-eb9a-4fd6-bb7b-d5ce8af5e80f", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + } + ], + "styles": { + "backgroundColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBg}}", + "fxActive": true + }, + "textColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "loaderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryText}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "{{queries.colorPalette.data.btnSecondaryBorder}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button12", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 730.0000610351562, + "left": 65.11627906976744, + "width": 5, + "height": 40 + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd" + }, + "b146390c-66db-46b0-9df3-f765c57d425b": { + "id": "b146390c-66db-46b0-9df3-f765c57d425b", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "0" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.fetchLeadsTransformed?.data?.Opportunity??[]}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true, + "key": "id", + "columnType": "default" + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true, + "columnType": "default", + "key": "name" + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true, + "columnType": "default", + "key": "email" + }, + { + "name": "company", + "id": "500a7631-4b78-4298-b65a-a3c0188ec1c9", + "columnType": "default", + "key": "company" + }, + { + "name": "department", + "id": "15518431-d6f8-4fe8-bb1d-05dbbc96e31f", + "columnType": "default", + "key": "department" + }, + { + "name": "process state", + "id": "8a626d31-5dd0-4fca-bce0-38421af2aa60", + "columnType": "default", + "key": "process_state" + }, + { + "name": "deal amount", + "id": "f3278bd5-7c5c-47dc-bfca-3a059d903ae0", + "columnType": "default", + "key": "deal_amount" + }, + { + "id": "5238456c-aaf6-49c5-a7a8-1d27a02b2972", + "name": "notes", + "key": "notes", + "columnType": "default", + "autogenerated": true + }, + { + "id": "2f8faaf7-ad99-438a-9da6-7edd49cfbd15", + "name": "created at", + "key": "created_at", + "columnType": "default", + "autogenerated": true + }, + { + "id": "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462", + "name": "updated at", + "key": "updated_at", + "columnType": "default", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 111, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 221, + "leftActions": 82, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 303, + "500a7631-4b78-4298-b65a-a3c0188ec1c9": 243, + "f3278bd5-7c5c-47dc-bfca-3a059d903ae0": 133, + "8a626d31-5dd0-4fca-bce0-38421af2aa60": 149, + "15518431-d6f8-4fe8-bb1d-05dbbc96e31f": 174, + "fd02a1af-4589-4b16-bd5d-07ec6f3535d4": 156 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Details", + "events": [ + { + "eventId": "onClick", + "actionId": "set-custom-variable", + "message": "Hello world!", + "alertType": "info", + "key": "selectedLeadData", + "value": "{{components.table2.selectedRow}}" + }, + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "398504a9-e028-4fbd-9f7a-2c668c1e32bb", + "queryName": "viewProfilePicture", + "parameters": {}, + "runOnlyIf": "{{variables.selectedLeadData.profile_image_url.length > 0}}" + } + ], + "position": "left", + "backgroundColor": "#f1f4ffff", + "textColor": "#5079ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "License", + "company", + "department", + "deal_amount", + "process_state", + "profile_image_url", + "is_active", + "status" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table2", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0.000012159347534179688, + "left": 0.0000019460754536737568, + "width": 43, + "height": 625 + } + }, + "parent": "d91777ee-6bf7-48a6-bae6-d9c5ddab0057-1" + }, + "f33bc72b-cde6-4cbe-9d77-a0be4cf1922e": { + "id": "f33bc72b-cde6-4cbe-9d77-a0be4cf1922e", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "0" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.fetchLeadsTransformed?.data?.Customer??[]}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true, + "key": "id", + "columnType": "default" + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true, + "columnType": "default", + "key": "name" + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true, + "columnType": "default", + "key": "email" + }, + { + "name": "company", + "id": "500a7631-4b78-4298-b65a-a3c0188ec1c9", + "columnType": "default", + "key": "company" + }, + { + "name": "department", + "id": "15518431-d6f8-4fe8-bb1d-05dbbc96e31f", + "columnType": "default", + "key": "department" + }, + { + "name": "process state", + "id": "8a626d31-5dd0-4fca-bce0-38421af2aa60", + "columnType": "default", + "key": "process_state" + }, + { + "name": "deal amount", + "id": "f3278bd5-7c5c-47dc-bfca-3a059d903ae0", + "columnType": "default", + "key": "deal_amount" + }, + { + "id": "5238456c-aaf6-49c5-a7a8-1d27a02b2972", + "name": "notes", + "key": "notes", + "columnType": "default", + "autogenerated": true + }, + { + "id": "2f8faaf7-ad99-438a-9da6-7edd49cfbd15", + "name": "created at", + "key": "created_at", + "columnType": "default", + "autogenerated": true + }, + { + "id": "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462", + "name": "updated at", + "key": "updated_at", + "columnType": "default", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 111, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 221, + "leftActions": 82, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 303, + "500a7631-4b78-4298-b65a-a3c0188ec1c9": 243, + "f3278bd5-7c5c-47dc-bfca-3a059d903ae0": 133, + "8a626d31-5dd0-4fca-bce0-38421af2aa60": 149, + "15518431-d6f8-4fe8-bb1d-05dbbc96e31f": 174, + "fd02a1af-4589-4b16-bd5d-07ec6f3535d4": 156 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Details", + "events": [ + { + "eventId": "onClick", + "actionId": "set-custom-variable", + "message": "Hello world!", + "alertType": "info", + "key": "selectedLeadData", + "value": "{{components.table3.selectedRow}}" + }, + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "398504a9-e028-4fbd-9f7a-2c668c1e32bb", + "queryName": "viewProfilePicture", + "parameters": {}, + "debounce": "", + "runOnlyIf": "{{variables.selectedLeadData.profile_image_url.length > 0}}" + } + ], + "position": "left", + "backgroundColor": "#f1f4ffff", + "textColor": "#5079ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "License", + "company", + "department", + "deal_amount", + "process_state", + "profile_image_url", + "is_active", + "status" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table3", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": -0.00003987550735473633, + "left": -0.0000031579780701562754, + "width": 43, + "height": 625 + } + }, + "parent": "d91777ee-6bf7-48a6-bae6-d9c5ddab0057-2" + }, + "8557211b-4340-4de9-aaca-d27136ab10fd": { + "id": "8557211b-4340-4de9-aaca-d27136ab10fd", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "0" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.fetchLeads.isLoading || queries.fetchLeadsTransformed.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries?.fetchLeadsTransformed?.data?.Lost??[]}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true, + "key": "id", + "columnType": "default" + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true, + "columnType": "default", + "key": "name" + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true, + "columnType": "default", + "key": "email" + }, + { + "name": "company", + "id": "500a7631-4b78-4298-b65a-a3c0188ec1c9", + "columnType": "default", + "key": "company" + }, + { + "name": "department", + "id": "15518431-d6f8-4fe8-bb1d-05dbbc96e31f", + "columnType": "default", + "key": "department" + }, + { + "name": "process state", + "id": "8a626d31-5dd0-4fca-bce0-38421af2aa60", + "columnType": "default", + "key": "process_state" + }, + { + "name": "deal amount", + "id": "f3278bd5-7c5c-47dc-bfca-3a059d903ae0", + "columnType": "default", + "key": "deal_amount" + }, + { + "id": "5238456c-aaf6-49c5-a7a8-1d27a02b2972", + "name": "notes", + "key": "notes", + "columnType": "default", + "autogenerated": true + }, + { + "id": "2f8faaf7-ad99-438a-9da6-7edd49cfbd15", + "name": "created at", + "key": "created_at", + "columnType": "default", + "autogenerated": true + }, + { + "id": "6a9ce6d3-f44b-44b0-8cec-528d3b4bc462", + "name": "updated at", + "key": "updated_at", + "columnType": "default", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 111, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 221, + "leftActions": 82, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 303, + "500a7631-4b78-4298-b65a-a3c0188ec1c9": 243, + "f3278bd5-7c5c-47dc-bfca-3a059d903ae0": 133, + "8a626d31-5dd0-4fca-bce0-38421af2aa60": 149, + "15518431-d6f8-4fe8-bb1d-05dbbc96e31f": 174, + "fd02a1af-4589-4b16-bd5d-07ec6f3535d4": 156 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Details", + "events": [ + { + "eventId": "onClick", + "actionId": "set-custom-variable", + "message": "Hello world!", + "alertType": "info", + "key": "selectedLeadData", + "value": "{{components.table4.selectedRow}}" + }, + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "398504a9-e028-4fbd-9f7a-2c668c1e32bb", + "queryName": "viewProfilePicture", + "parameters": {}, + "runOnlyIf": "{{variables.selectedLeadData.profile_image_url.length > 0}}" + } + ], + "position": "left", + "backgroundColor": "#f1f4ffff", + "textColor": "#5079ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "License", + "company", + "department", + "deal_amount", + "process_state", + "profile_image_url", + "is_active", + "status" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table4", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": -0.00004315376281738281, + "left": -7.215823494277629e-8, + "width": 43, + "height": 625 + } + }, + "parent": "d91777ee-6bf7-48a6-bae6-d9c5ddab0057-3" + }, + "00fe8322-78b3-48f8-9a22-f0f7a7b152f3": { + "component": { + "properties": { + "data": { + "type": "code", + "displayName": "Svg data", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "data": { + "value": "" + } + }, + "general": { + "tooltip": { + "value": "Click on the points to set Process state." + } + }, + "exposedVariables": {} + }, + "name": "svgimage1", + "displayName": "Svg Image", + "description": "Svg image", + "component": "SvgImage", + "defaultSize": { + "width": 4, + "height": 50 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "1e3ac79e-910f-4205-8aa8-26648037ddfd", + "layouts": { + "desktop": { + "top": 110.00009155273438, + "left": 90.69767800032412, + "width": 2, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "c554104e-fb35-4394-a2ba-d76160a889da": { + "id": "c554104e-fb35-4394-a2ba-d76160a889da", + "component": { + "properties": { + "data": { + "type": "code", + "displayName": "Svg data", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "data": { + "value": "" + } + }, + "general": { + "tooltip": { + "value": "Click on the points to set Process state." + } + }, + "exposedVariables": {} + }, + "name": "svgimage2", + "displayName": "Svg Image", + "description": "Svg image", + "component": "SvgImage", + "defaultSize": { + "width": 4, + "height": 50 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 110.00006484985352, + "left": 90.69767812888233, + "width": 2, + "height": 30 + } + }, + "parent": "c174dc3c-f794-4644-8c95-e9640bc8d9f2" + } + }, + "handle": "home", + "name": "Home" + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "5000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": 2400, + "canvasBackgroundColor": "#ffffff", + "backgroundFxQuery": "{{queries.colorPalette.data[\"canvasBg_\"+globals.theme.name]}}" + } + }, + "appId": "38c9c7cc-2ecf-4375-85c7-30279e59e111", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-08-30T07:34:00.601Z", + "updatedAt": "2023-10-11T10:20:30.800Z" + } + ], + "appEnvironments": [ + { + "id": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "production", + "isDefault": true, + "priority": 3, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "staging", + "isDefault": false, + "priority": 2, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "development", + "isDefault": false, + "priority": 1, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + } + ], + "dataSourceOptions": [ + { + "id": "fd79676a-f641-4f13-897c-a4487298e956", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a1d06fc-5357-4784-8468-61886137214b", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "4ebed5f4-aa04-4674-88b5-475de6305c15", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "09bf5c38-8cec-4973-8855-643c5133d87e", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4254e048-0e9c-4173-ac9b-6448fdfe0272", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "81c95c9d-4d5c-4509-bcc0-9b6db463646a", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "a4fec9af-15b8-4288-a3dc-c6797f050b2c", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "72371933-729a-4e35-9915-950ed7d1a6da", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "dc16dddb-6eb9-4a56-8b83-c7821c1be3e4", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a59db8a-b46b-4411-ba16-c6e9614fde09", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "6fc0a89f-6fe0-48ed-b085-f1ba06c15b00", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9c069f5a-1e8c-432e-ac34-4bd3102d8c84", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9ce12342-7f72-4170-a0c3-a2fa750b08ec", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "08bc41cc-49b7-46f1-a7d8-e491f3b1e687", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e5d9ca99-a662-4dc3-bb06-11d3efc5b0e6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df795abb-982a-4a49-852a-6e049d72b063", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "109373cc-a29d-49cf-9c09-b78d9000c797", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "394cd4b9-6678-4666-a3b4-7220fdc9f3fa", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "49a16184-fb7f-4302-8f3a-183203af3e13", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "58c756e7-4ac8-47e5-ad47-dd9f3bd54bd6", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a115c49b-a119-40d0-8db0-f020724207ad", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e138a408-40a3-4a04-8f43-d4d9f77b670d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a980201d-0197-41af-8b44-5b9a777d08db", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b92d7e20-aef7-408c-a5fd-cfb1afe3802f", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "427cc0a3-b736-4552-a043-849312f72535", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "fd4bc72c-00f5-42d5-9fe6-758b3c4e05a1", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df6525aa-cba3-40aa-92be-d908007f1d47", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "064644df-c753-4c38-a368-08760a852289", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ed34011-fb0c-4df6-9ac3-c0722e5afc15", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "603ecf7a-24ca-4102-a3a2-9adf3540d47f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ffbf05e-51d6-4087-a11f-b4d7e431dc83", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8210c7ae-f59e-4bea-b0c5-50c118343441", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "63a0be80-a870-4cc2-ab64-8127efbd108d", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "869450d4-61c3-4d90-b714-4b1881e39518", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd7cbbff-0d68-4493-983d-37b726ebc98c", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3e4c6b07-8e27-4163-a2f2-cbb55942f87b", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "70a7e577-d084-40ce-a5e7-058c86912c66", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "ca37482f-4921-4c56-87dc-6b2eae124de4", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "35c27146-7fc0-4b09-a2ce-0f245bbf714b", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3bfaae26-a193-41be-a6df-6c854851ec90", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "69f40c97-1d4e-4f87-9a98-7f0a12a3238b", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3eb4f10b-d70f-457b-a6d6-1facf33bb388", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "649ebc41-1207-4383-ac37-affebaf46025", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "2b64c284-3043-4011-b501-7438f977e8d6", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "66234021-3d1e-4314-aa85-233e15c788c4", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b3ca510b-fd4d-48b1-a204-39905d3553d6", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0af3f0c9-bf1e-4b60-8868-25dcaa5c509c", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "42d8efc3-5c1a-4085-a259-b38e0a5c2df5", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "7e49e5a8-08d7-4a02-897c-13d235ab00f9", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f7cf3288-f755-40db-ac07-c6f0832b7c6b", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "cd9235bc-aec9-4da1-b22c-e7da50f3cde6", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "5a13235b-390e-4888-bbca-4c0e7e85b811", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e096bd24-e396-4893-88dd-2872176057a2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f9d33ef5-bf7d-4c52-a919-64cd39b5a9c5", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a011c5e5-60bd-44d4-a057-b5aa23b75aee", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "bb811868-ea85-4b54-8a13-e999971eeb9d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "24db297d-9213-4102-a253-26a34565ee73", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "73e98e30-9fd0-4ee2-b001-a91cc6fa8396", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4bb78281-112c-411c-9fc1-fe6b8c4ef0c9", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "4edc07e1-819c-433d-9545-7156e0813abf", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "7eb5fab2-76bb-4457-b049-d2fc338cd143", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a729b4d1-1520-4a4f-92d9-5b4d39e609a7", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0c980db9-a929-481a-be6a-b71ea5ad2107", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "7f703daa-1e72-4a75-bc70-884816577a05", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a1043e60-e673-4041-a64f-e26e4609cdbf", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "100298a0-928d-4589-a70f-34a0926a28a1", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "aba37959-1599-4a70-ae4c-7b05ffa2a800", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e950b029-4156-4afe-8a18-e7927aafc191", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "ca1f9156-a727-4e4d-b609-396d9ad65b7a", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e8040071-0a1a-4e11-a04f-7cbc179d5868", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "ef525392-c7cb-431d-8525-afd52f2a0131", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b5192850-7615-4e13-b1ae-93b956f5be03", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd459a47-9e32-448b-a362-a957ed61a744", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "ea086241-7ebf-42b3-a9e0-98e7f9615fde", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.259Z", + "updatedAt": "2023-02-07T08:20:48.259Z" + }, + { + "id": "2f3691b6-4dc5-49db-be70-2646b0b37b3e", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "88454045-b2a0-4f59-baf5-0f32a0f5000c", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.268Z", + "updatedAt": "2023-02-07T08:20:48.268Z" + }, + { + "id": "0a14939a-e6e2-4156-833d-692fa2374241", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "0d46628b-d8e9-4463-b4d1-bf254a825ffd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.273Z", + "updatedAt": "2023-02-07T08:20:48.273Z" + }, + { + "id": "fcd55e6a-7b48-4541-b86b-8fc5d661ff08", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.283Z", + "updatedAt": "2023-02-07T08:20:48.283Z" + }, + { + "id": "3e6b2492-3d73-4792-b447-3bd27a74d424", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.287Z", + "updatedAt": "2023-02-07T08:20:48.287Z" + }, + { + "id": "506a0e32-25c0-4a19-a6f7-9d04c339d28b", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.289Z", + "updatedAt": "2023-02-07T08:20:48.289Z" + }, + { + "id": "6b19a6ab-7756-4386-9592-6ab4d5fa98d1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.295Z", + "updatedAt": "2023-02-07T08:20:48.295Z" + }, + { + "id": "af5be5e6-666d-4437-a75c-a10830980dbe", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.297Z", + "updatedAt": "2023-02-07T08:20:48.297Z" + }, + { + "id": "983162ea-8848-4388-b88c-971523d0cbb1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.299Z", + "updatedAt": "2023-02-07T08:20:48.299Z" + }, + { + "id": "a308e389-9497-4f1b-9564-5424a0a0b7b1", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.348Z", + "updatedAt": "2023-02-07T08:20:48.348Z" + }, + { + "id": "18d6b459-7d7d-4ba0-9ee7-c581844e0d45", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.351Z", + "updatedAt": "2023-02-07T08:20:48.351Z" + }, + { + "id": "478e9b22-6f4d-45fa-b50f-77b45a616669", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.353Z", + "updatedAt": "2023-02-07T08:20:48.353Z" + }, + { + "id": "bd491146-3009-418f-a4d6-5e976d966a01", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.356Z", + "updatedAt": "2023-02-07T08:20:48.356Z" + }, + { + "id": "9383e443-5c0f-4fe9-ac9a-273971edd22b", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.357Z", + "updatedAt": "2023-02-07T08:20:48.357Z" + }, + { + "id": "764bce5d-3227-4681-806f-50051e97a6f1", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.359Z", + "updatedAt": "2023-02-07T08:20:48.359Z" + }, + { + "id": "2f79cbc9-4ecc-4a2a-8f14-624961660a51", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "2f701e52-7cfe-49a8-bb40-956ed45342d1", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.858Z", + "updatedAt": "2023-02-07T10:13:59.858Z" + }, + { + "id": "ce715761-73f2-46b1-95f2-124d2b098a77", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "da58d6d5-09e3-4d72-a3cb-48277e4d5379", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.863Z", + "updatedAt": "2023-02-07T10:13:59.863Z" + }, + { + "id": "116031c1-ee38-483d-9625-b13548d97459", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "999deb1f-6190-4508-8607-2b57a9acf977", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.867Z", + "updatedAt": "2023-02-07T10:13:59.867Z" + }, + { + "id": "9659e653-8eca-4ed1-9cfa-c27c3080bc61", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9fe7b96b-8899-40ae-bfb2-f2c56c89389e", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.834Z" + }, + { + "id": "9da2713d-98d6-4388-a5e7-42cb22d2a0f9", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "d5b29186-21d7-45e3-a40c-7d3a4a6306e2", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.762Z" + }, + { + "id": "4ba4ad64-bdac-45e2-a112-da4bb720e654", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "f20d22f2-75db-4ff7-94d1-3667878c031b", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.842Z" + }, + { + "id": "1c193e6d-f21a-4945-a1a3-0271900258ef", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1852e614-7f87-4e16-8d35-ae924ce2193b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.450Z", + "updatedAt": "2023-07-07T10:07:23.333Z" + }, + { + "id": "7c172ef0-eabb-4ce1-9fef-7534e4804218", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b159f378-74b0-44cb-9b04-ea4a1c02bd09", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.706Z" + }, + { + "id": "f9ff54d6-55af-4428-ad9a-75343cd2cd36", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e3baf697-ea3e-4f03-be01-db6d0344f635", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.698Z" + }, + { + "id": "a754d3d0-ff68-47b0-ad58-073862e0e78a", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "c85938e4-7be9-46c6-b37f-045435dc17e7", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "91112338-8edc-437e-a066-eb7445b8c9f0", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "57204c96-1590-49d0-ae82-85d6096b4f3f", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.753Z", + "updatedAt": "2023-07-21T15:39:41.753Z" + }, + { + "id": "5d8aeece-e171-4f98-a17a-dafcf094eefc", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.754Z", + "updatedAt": "2023-07-21T15:39:41.754Z" + }, + { + "id": "37f7e000-2b47-429f-b7e4-9e024479d9b8", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.756Z", + "updatedAt": "2023-07-21T15:39:41.756Z" + }, + { + "id": "fb85fb2c-9aed-4dda-b167-d9b95bd8695f", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.762Z", + "updatedAt": "2023-07-21T15:39:41.762Z" + }, + { + "id": "57bc1c57-3a79-4f8c-8f82-743783098320", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.764Z", + "updatedAt": "2023-07-21T15:39:41.764Z" + }, + { + "id": "e3df8c1e-e689-460e-a1c0-a6ac34e2c6fb", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.765Z", + "updatedAt": "2023-07-21T15:39:41.765Z" + }, + { + "id": "ddb73901-f6b8-4e98-a98e-d20764e981d5", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.770Z", + "updatedAt": "2023-07-21T15:39:41.770Z" + }, + { + "id": "64ded0f0-a523-46e0-8de4-1233af798e69", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.773Z", + "updatedAt": "2023-07-21T15:39:41.773Z" + }, + { + "id": "563951c4-3c25-4c16-85bd-bf35c67c541d", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.774Z", + "updatedAt": "2023-07-21T15:39:41.774Z" + }, + { + "id": "35da5f37-e660-4711-8b89-3ed348857e88", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "apiKey": { + "credential_id": "61601401-8d9b-47d8-81cc-fcb0ab9df125", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.509Z" + }, + { + "id": "7054580b-dcf1-42db-8599-b295874586e4", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "apiKey": { + "credential_id": "309cd1c4-4241-4757-9216-7c1d5052a6f2", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.508Z" + }, + { + "id": "69646d74-947f-4ac7-9560-b58fce035d3c", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "apiKey": { + "credential_id": "02ea1d76-bf4e-40b5-a57a-ad02467754d7", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.489Z" + }, + { + "id": "607909a2-1d4d-4bab-8468-1f0f8351ab14", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.735Z", + "updatedAt": "2023-08-11T05:25:31.735Z" + }, + { + "id": "9423866f-d475-42c3-b2a7-c63be6ed9abb", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.739Z", + "updatedAt": "2023-08-11T05:25:31.739Z" + }, + { + "id": "90a1596f-5d45-4ad4-a376-3b555f4773bd", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.741Z", + "updatedAt": "2023-08-11T05:25:31.741Z" + }, + { + "id": "a41de1f3-3486-4f59-a964-fd99a077d61b", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.747Z", + "updatedAt": "2023-08-11T05:25:31.747Z" + }, + { + "id": "5b452053-b728-48ea-969f-35ee44bd449e", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.750Z", + "updatedAt": "2023-08-11T05:25:31.750Z" + }, + { + "id": "b4e5d146-7682-44c6-b009-9a59a3a144bb", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.752Z", + "updatedAt": "2023-08-11T05:25:31.752Z" + }, + { + "id": "d01715d9-1ffb-405e-b5e3-b9d786697627", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.761Z", + "updatedAt": "2023-08-11T05:25:31.761Z" + }, + { + "id": "fff3b76b-14f9-49c2-9520-ccff9f3b0239", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.764Z", + "updatedAt": "2023-08-11T05:25:31.764Z" + }, + { + "id": "c1136230-787e-4985-afa3-ec88e383b3c1", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.766Z", + "updatedAt": "2023-08-11T05:25:31.766Z" + }, + { + "id": "6e14d7b5-99db-4f14-84e4-8fa34ca096da", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.772Z", + "updatedAt": "2023-08-11T05:25:31.772Z" + }, + { + "id": "a0bed57b-7aae-4a5a-b154-49cdd9e508cb", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.775Z", + "updatedAt": "2023-08-11T05:25:31.775Z" + }, + { + "id": "13272f64-55dc-4fd9-a692-9dc9afe40b97", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.780Z", + "updatedAt": "2023-08-11T05:25:31.780Z" + }, + { + "id": "abbd66ec-c0a2-4893-8bd1-a90100ec7963", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.785Z", + "updatedAt": "2023-08-11T05:25:31.785Z" + }, + { + "id": "563d611b-ed1e-46a1-bad7-f1ffd91cffef", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connection_limit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf05673058", + "encrypted": false + }, + "password": { + "value": "08BcGsD9))xK7rpLAKDw8QK", + "encrypted": false + }, + "host": { + "value": "dbpwf05673058.sysp0000.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "supplychain", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.788Z", + "updatedAt": "2023-08-11T05:25:31.788Z" + }, + { + "id": "eb8f5145-06ae-4ee6-bd79-26bbacf672d7", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.791Z", + "updatedAt": "2023-08-11T05:25:31.791Z" + }, + { + "id": "34b17572-60b1-4895-bd93-5c85ba03b319", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "aa622b9c-27c6-45c6-8ec7-471e4a346a7c", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "d8dbbb97-667b-42cf-8e1d-c3920b91ae0a", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "3d4a1b27-f9bd-47ae-aaaa-d1564e91456a", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.804Z", + "updatedAt": "2023-08-11T05:27:56.804Z" + }, + { + "id": "525b25cb-90b1-4d2c-80cf-b4fc2b3e4fee", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.807Z", + "updatedAt": "2023-08-11T05:27:56.807Z" + }, + { + "id": "4a853db8-3f1d-4cf2-93c2-ce3e28266b36", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.809Z", + "updatedAt": "2023-08-11T05:27:56.809Z" + }, + { + "id": "846b03f8-f6e1-4a79-8ae7-d545c1f4f0b5", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.813Z", + "updatedAt": "2023-08-11T05:27:56.813Z" + }, + { + "id": "4de0613b-4f14-40c9-aeac-7d027ff73833", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.815Z", + "updatedAt": "2023-08-11T05:27:56.815Z" + }, + { + "id": "69eb4761-b882-4c51-8e11-e568731bc43e", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.818Z", + "updatedAt": "2023-08-11T05:27:56.818Z" + }, + { + "id": "564f68c5-4980-493f-9699-1ff567482fd0", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.821Z", + "updatedAt": "2023-08-11T05:27:56.821Z" + }, + { + "id": "06d2856d-000f-47d1-a7ff-8e818eb42478", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.824Z", + "updatedAt": "2023-08-11T05:27:56.824Z" + }, + { + "id": "f2579e45-a0bd-423f-b724-9af76d33ea87", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.825Z", + "updatedAt": "2023-08-11T05:27:56.825Z" + }, + { + "id": "773493c0-efdf-465a-bab1-910a8ff9c6c8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "5a426139-fa01-4ea3-b1fe-9794e901503f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.832Z", + "updatedAt": "2023-08-11T05:27:56.832Z" + }, + { + "id": "026abb10-56a6-488b-b36c-f55d613893fc", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "1c465591-2ecf-4a81-945f-8dc32d7d12c5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.838Z", + "updatedAt": "2023-08-11T05:27:56.838Z" + }, + { + "id": "6c3b028c-314a-4534-8660-d412d627cda8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "159a0956-8cfb-4aa6-8a3a-e833042c6a86", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.845Z", + "updatedAt": "2023-08-11T05:27:56.845Z" + }, + { + "id": "67450519-17ee-4c56-a7ea-a0a596d3f139", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.231Z", + "updatedAt": "2023-08-11T05:30:20.231Z" + }, + { + "id": "ebb05718-564b-48dc-be97-fe9042a03a32", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.233Z", + "updatedAt": "2023-08-11T05:30:20.233Z" + }, + { + "id": "906cfd94-81db-408d-8771-ac9dd7475525", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.235Z", + "updatedAt": "2023-08-11T05:30:20.235Z" + }, + { + "id": "8ce3c15e-ce3c-443b-be1b-41de4ba604c5", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.239Z", + "updatedAt": "2023-08-11T05:30:20.239Z" + }, + { + "id": "c09660a0-0d13-4c77-825b-05035e7009d3", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.241Z", + "updatedAt": "2023-08-11T05:30:20.241Z" + }, + { + "id": "81225ea3-efa6-497f-a7a0-c4993eb0ccf4", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.243Z", + "updatedAt": "2023-08-11T05:30:20.243Z" + }, + { + "id": "fe1d2b79-b36f-4b6a-a169-05c7dfc012ae", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.246Z", + "updatedAt": "2023-08-11T05:30:20.246Z" + }, + { + "id": "c006f812-b14d-492f-bbb3-473498b1f0d1", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.249Z", + "updatedAt": "2023-08-11T05:30:20.249Z" + }, + { + "id": "44bb1b06-e6d5-4762-ae62-1ee890f646b3", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.250Z", + "updatedAt": "2023-08-11T05:30:20.250Z" + }, + { + "id": "15054e36-8e1f-410c-8038-1682aa54bc0e", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.255Z", + "updatedAt": "2023-08-11T05:30:20.255Z" + }, + { + "id": "114ca108-5785-41e3-a668-f93b0786d3a3", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.258Z", + "updatedAt": "2023-08-11T05:30:20.258Z" + }, + { + "id": "8932558d-cc2f-48bc-9073-67284f5519b2", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.260Z", + "updatedAt": "2023-08-11T05:30:20.260Z" + }, + { + "id": "16722499-31b5-4b46-b1df-ed4ad1acc8ec", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.039Z", + "updatedAt": "2023-08-11T05:30:51.039Z" + }, + { + "id": "9a318479-eeab-4446-801a-52e9cfd3070d", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.041Z", + "updatedAt": "2023-08-11T05:30:51.041Z" + }, + { + "id": "8e8d8043-75c0-4d79-b653-6878cf3443d4", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.043Z", + "updatedAt": "2023-08-11T05:30:51.043Z" + }, + { + "id": "9f7ac124-bb3d-49b3-a31e-22d3748893aa", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.046Z", + "updatedAt": "2023-08-11T05:30:51.046Z" + }, + { + "id": "9a550543-805f-4b34-aa13-b92d02f1ffcb", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.049Z", + "updatedAt": "2023-08-11T05:30:51.049Z" + }, + { + "id": "d33927b6-68cb-491c-89ab-92eba9e9e420", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.050Z", + "updatedAt": "2023-08-11T05:30:51.050Z" + }, + { + "id": "1cf19dac-8763-472b-a7c3-79bd785fe5c2", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.054Z", + "updatedAt": "2023-08-11T05:30:51.054Z" + }, + { + "id": "8b0aba4d-a18b-46e0-b6f8-74e3d0e120d0", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.056Z", + "updatedAt": "2023-08-11T05:30:51.056Z" + }, + { + "id": "ce5afd07-2e89-4459-9316-52d3a1ff4cc8", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.058Z", + "updatedAt": "2023-08-11T05:30:51.058Z" + }, + { + "id": "3705a1ca-7f79-4b54-b2f3-9c9c51ac15fb", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.061Z", + "updatedAt": "2023-08-11T05:30:51.061Z" + }, + { + "id": "9f910e79-2e89-4b95-8f51-e4c8f468bb06", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.063Z", + "updatedAt": "2023-08-11T05:30:51.063Z" + }, + { + "id": "c29e2d61-df14-4058-be31-0e6049af3767", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.065Z", + "updatedAt": "2023-08-11T05:30:51.065Z" + }, + { + "id": "a71b2210-07a0-4306-9e9a-58a67cbb16fb", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "970a7dc8-1b45-4629-85f4-0c90d979ac77", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.071Z", + "updatedAt": "2023-08-11T05:30:51.071Z" + }, + { + "id": "ca31376b-a3c7-4816-94f9-6a5f33a18752", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "84b081aa-1af2-4c94-a3f9-0aab8fbb4387", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.076Z", + "updatedAt": "2023-08-11T05:30:51.076Z" + }, + { + "id": "2b3ad55c-e489-4b64-8bb0-3259c2226b9b", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "daf902f8-4130-4b27-b809-054142b85533", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.080Z", + "updatedAt": "2023-08-11T05:30:51.080Z" + }, + { + "id": "e11d8442-b59c-41b4-907b-d6a9d39ba8f4", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "d80cea6e-acc6-4f7d-ba45-33907f1577a8", + "encrypted": true + }, + "refresh_token": { + "credential_id": "1f33c798-34fc-43e6-8194-af259c5896fd", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.093Z", + "updatedAt": "2023-08-11T05:30:51.093Z" + }, + { + "id": "e47dd2ed-a90a-497a-a10e-b8b2e3581137", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.095Z", + "updatedAt": "2023-08-11T05:30:51.095Z" + }, + { + "id": "b331e4cc-f6d1-4ea8-a8a6-ca6b7d5e1417", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "4e208265-326a-4c8f-bcfd-ade4f891b09f", + "encrypted": true + }, + "refresh_token": { + "credential_id": "a88ef077-9fe4-4c13-9be2-5ad9f8581e63", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.100Z", + "updatedAt": "2023-08-11T05:30:51.100Z" + }, + { + "id": "954bf10a-73d9-4f69-8bdf-0343ecb9b914", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "d78c54cb-2c98-4f47-b84a-48b1559d06a6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.108Z", + "updatedAt": "2023-09-08T05:45:17.147Z" + }, + { + "id": "5dd687e3-f975-40ba-a09c-5c38207cec2a", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "046fbaa7-1e06-4272-a199-ecac4e8d3652", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.112Z", + "updatedAt": "2023-08-11T05:30:51.112Z" + }, + { + "id": "dd1e77b2-4316-4422-a7db-0757cebd5ce7", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "ruby.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "xocrerjd", + "encrypted": false + }, + "username": { + "value": "xocrerjd", + "encrypted": false + }, + "password": { + "credential_id": "42639ba9-6e81-4dd0-b614-bbb576283aff", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.116Z", + "updatedAt": "2023-08-11T05:30:51.116Z" + }, + { + "id": "f63bacf8-aa52-4936-b5bf-6cc042c691f9", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "913cdee9-d649-4d0f-a70c-e8054e7ffcc7", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.297Z" + }, + { + "id": "12ab2f62-ccf2-4d1c-9c76-6207b5d7c511", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "599802c3-5323-465b-8339-26dbab02c131", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.303Z" + }, + { + "id": "e8a9d1a1-2e9d-4717-8c68-e9c461114ce6", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "0896f5b5-90db-4ec6-8058-ec2c2d2cfc41", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.304Z" + }, + { + "id": "e07bce03-8500-48b0-b1ff-f4f89d85dfda", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "2e0f0d5c-2025-4829-88ce-b7273c9bd21a", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "46e10728-7756-4ff0-aafa-e5c93d8f78fd", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connection_limit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:43.023Z" + }, + { + "id": "1e833a39-b02e-4875-82b6-41cf152a1a1e", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "7fefa8e8-ae6f-4125-a633-7d0a86f0ef34", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "fc132ba2-e883-42bf-9438-aa8662beb474", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "231d0729-4492-4fce-b255-b0da72228478", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "5f6c58ad-e405-4078-ad28-0c589bcd3cd5", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "18f07210-2414-4acf-a61e-14335775ee2e", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "202ecc77-dfc4-4735-a638-1bc7959287bd", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "cab55bc1-cc1c-4aa2-8b45-973b422f246f", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "862bb61e-56c9-4d52-aa7e-4b05c82340a1", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "3eec46f6-0a59-4281-8573-88bc3ff29761", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "7f623dcd-95d1-4881-b732-61e1dd64e02b", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "5993421e-93b9-4974-8b11-c2031b2733d2", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "bcde9950-77ee-417a-88ae-0ebe400e370d", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "097eaeee-321a-49c3-a9ce-25280a107028", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "fb416dce-f856-477d-a782-b397845d9781", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "308e77b5-ce45-4c86-9742-6c7607fed5a1", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.970Z", + "updatedAt": "2023-08-21T13:56:27.970Z" + }, + { + "id": "f03a0824-fcec-4ac6-87b6-4a9840211de6", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.973Z", + "updatedAt": "2023-08-21T13:56:27.973Z" + }, + { + "id": "0af87cd8-ba96-497f-b4bc-d12ebf047ad2", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.975Z", + "updatedAt": "2023-08-21T13:56:27.975Z" + }, + { + "id": "ee60edbf-1eca-43a3-92d8-422ce3fee6a1", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.980Z", + "updatedAt": "2023-08-21T13:56:27.980Z" + }, + { + "id": "c139c723-3f7c-43c0-bf3b-62fc951ce781", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.983Z", + "updatedAt": "2023-08-21T13:56:27.983Z" + }, + { + "id": "43448873-bf13-4c5d-a4e7-651196b9a342", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.985Z", + "updatedAt": "2023-08-21T13:56:27.985Z" + }, + { + "id": "f573eb7d-ac39-4b75-be62-ae7765965959", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.991Z", + "updatedAt": "2023-08-21T13:56:27.991Z" + }, + { + "id": "b0b405ad-9af6-40e9-ad47-d00543b21d5b", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.993Z", + "updatedAt": "2023-08-21T13:56:27.993Z" + }, + { + "id": "81cf7c3b-2b18-4dfb-862d-61ea48c93731", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.995Z", + "updatedAt": "2023-08-21T13:56:27.995Z" + }, + { + "id": "99ffb143-7554-4771-8748-e8e0692c353d", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.999Z", + "updatedAt": "2023-08-21T13:56:27.999Z" + }, + { + "id": "b58b48b1-3df7-4837-957a-8651dfa10495", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:28.002Z", + "updatedAt": "2023-08-21T13:56:28.002Z" + }, + { + "id": "b0823937-7525-441f-bac2-b76c128f4b9a", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:28.004Z", + "updatedAt": "2023-08-21T13:56:28.004Z" + }, + { + "id": "17638875-3f23-418e-8bb2-8a23c6862772", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "6c7010d0-f8e1-43fb-b3b8-2583dfa97f9d", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "245a4b8d-77f8-469e-b32b-d59962d1ae47", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "f744db0b-412d-4dbd-af66-1d3a1eb9a4e1", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2055a89b-a704-405d-a0ef-1b78ccfdb625", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "b2165238-e3ba-4293-a5d9-84e15adc1383", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "71acc523-8faa-41a8-a321-833f71ffb54e", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "e234fc17-4936-4a5c-9fb0-1ce868b8fda8", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "13af9c1c-6e4a-4cc3-aec5-6f725241194e", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "c7771fa2-5315-4e67-ad76-629fa6303bc8", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2496c4bf-eb4b-4c8c-ba0e-3bd7d1b41e31", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "824a1517-83c9-4a73-9888-4b1830080aeb", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "a61c8e71-457e-473b-b7d9-541c8bddf53a", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "d0681729-dd25-4b9b-996f-41975fe920ef", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "8f22a729-62d4-4521-9123-185d35df6a38", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "ef6ae06d-affb-47b6-a5be-440ac2daed1d", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "ee04414f-bcea-4e44-b701-7e0c3eee4678", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "3b98d4d8-a48d-47ea-90ca-325cf9c98065", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "9c7c8855-e71b-47f5-a5fd-7493336c60c4", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "adf7ebf4-0f89-4257-959b-3f96fc835df3", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "140ac414-92c7-4b0a-b84e-a315b5f6b5bd", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "b871cb37-8c70-4cef-a625-0d74969071b2", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "aa593377-cec9-4031-a711-103cb8cc4ef5", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "17cbbd55-b2ec-4731-9f32-d47529ff903b", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.254Z" + }, + { + "id": "e142d464-2728-4aaa-b497-49252b07e4d9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "af3cbb6f-7d26-4193-8f89-f7fc22fec91a", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "c99af3f7-0d85-4de6-8c1d-48d17bcddda9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "dd9719e3-87c9-4a96-843c-1578489663e2", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "5029c51c-f692-40b6-a032-b053f57d4443", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "1a133da3-b024-4897-8630-0ece1464b567", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.234Z", + "updatedAt": "2023-08-28T07:47:13.234Z" + }, + { + "id": "025d6ef6-cfdd-4d6d-8441-5868d10c2299", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "87e46111-efff-4524-be64-49d0510152b8", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "2cd268e5-7c36-4060-bc24-7ab82838266d", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "b206d8c1-2ac4-4586-8d62-8a418d12e8bf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "9440a869-6e05-49bb-84f2-349be5631406", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "5062282d-ed14-4ff8-b2e2-ad9d8288aeaf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "0349de56-09bb-456a-9cf3-f2c956bef552", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "user_database", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "3a47e3ba-4340-451c-a047-b7f2fa8520bd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "4a4c3c21-d3ef-4c1f-a50e-a4c15424dc15", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "677a91dc-4373-4e98-b840-95ec5834597b", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "a4bd1a9b-ee08-4f17-b06d-56fa70c16fd0", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "467f2e41-9f98-4292-8777-242d8f1e7c75", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "c3ebadb7-d5bd-4077-bbfc-cfce8335d1fa", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "1e38a3cd-d349-4819-98e4-578fd7cb70e2", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "9e07557c-a502-40d3-aaff-6e58f4be04cf", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "f84c4b0f-7801-4c8e-8ac6-42056d13c9cd", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "0339a258-570a-40cc-9bef-3ef4ad58d8cb", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "4ea736e5-5059-42f8-9ba7-2915c2d98c8d", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "e6ff42b5-bbe1-4dbf-b5bf-2b2d88aa23c8", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "466513d1-128c-441b-9103-3d538f334dfc", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "2c58a954-1de0-489d-bfc2-595ed5ea523c", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "4a31dd03-0da1-48b6-abd9-8e4360c33aa6", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "ecac8c08-1ba1-4780-bf2c-f57cad1f67b2", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "307d6ffc-c0a6-4028-be4c-d78e7046a93a", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "7fb4953a-64fc-442e-9896-687865020ecc", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "f5e67572-5937-4662-b1bb-570c43387028", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T09:44:58.901Z" + }, + { + "id": "5018c012-11c3-47c0-b2f7-44e35570ce45", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "0a43d696-39bc-41ac-a2ae-ca008482f198", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.899Z" + }, + { + "id": "995e8fe7-c094-4382-a525-49b50b600e3e", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "32135ca5-91a6-42ba-ac2a-11a66d970f6d", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.898Z" + }, + { + "id": "cdae49ab-72be-4e14-9b64-5d180e1e8567", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "555229cf-1ced-4625-bb08-f1d9dc725141", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "3e5d8554-d032-470b-8153-a4f2747a9d3e", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "52893971-c1a2-4d81-b95c-9a81de6127e5", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "ca4e9c9e-c0c9-43b1-9f44-93a19c0821c3", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "8ed63dbc-22a8-4baa-9f23-638ea088f650", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "6772e351-893e-413a-a249-02a1604062ef", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "3239421c-5716-4d0f-aad0-44a2c3d3da09", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "bdde232b-4363-478a-ab0b-7ade4a4af616", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "f31ee1d7-8396-4fb6-8d07-7c5894b7cbac", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "dafc2e2a-f62c-482f-829a-b257debf0017", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "00e8a108-1284-4a5f-8d0b-159871c5435f", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "c3f0693e-c422-4629-b52d-bbff1fe8e141", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "api_key": { + "credential_id": "4dd17ec9-4107-4018-812c-2c89e1aa5a4c", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.676Z" + }, + { + "id": "61cdc365-6c81-465f-bcbe-938be0bd0e78", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "api_key": { + "credential_id": "157e86ee-8876-4c40-8b33-2b232a0e4479", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.678Z" + }, + { + "id": "cde99d0e-572c-428d-9d9d-3f1302eb1060", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "api_key": { + "credential_id": "88db6f8c-e0a9-45c6-a929-29f0dac8d907", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.665Z" + }, + { + "id": "746982f2-cbd0-4f5b-84b3-7aefa7ad9eb8", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "68e8cad0-d2f9-49af-93bc-9a4701e809b1", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b8bedcac-c9d2-4f55-b216-b1dbd48e9dde", + "encrypted": true + }, + "bearer_token": { + "credential_id": "cac95640-d5a7-467b-8f81-9e2387eb8789", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.549Z" + }, + { + "id": "080e370c-b767-4e8c-b06f-f574f847db9a", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "fb390b10-2760-4c23-acff-50af3bc50063", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "dec7dacb-a6e7-47c7-bb1a-ad7eaf987019", + "encrypted": true + }, + "bearer_token": { + "credential_id": "e5a3f2e7-7ef8-4365-988c-fcd016d5bfa3", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.533Z" + }, + { + "id": "41cafd8f-2f88-463a-bfb0-ea85a737c46e", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "b4cc22dc-06aa-41dc-9d60-bf09eee7af8c", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "5ec07818-521c-48fb-91d9-c6e2d0b09bdc", + "encrypted": true + }, + "bearer_token": { + "credential_id": "36fc5283-190e-4577-8986-074bd777d2ae", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.556Z" + }, + { + "id": "3c0e1b76-6e28-43dc-ae38-ad164f22a5e5", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "3a81117d-b5a9-4b1e-b826-3225234d54e1", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.403Z" + }, + { + "id": "3e6a4aca-c360-4de2-b0f0-c7c1b30de95b", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "6e545171-b88c-4168-86d4-34344a4656a3", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.402Z" + }, + { + "id": "1fb71fef-54ca-48d4-a261-9080d6d90ca1", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "df5cc284-9a76-409b-a0d9-cb644ff98457", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.397Z" + }, + { + "id": "39877a2d-f1e4-4f26-9c49-d90cc74190e2", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.875Z", + "updatedAt": "2023-09-11T18:11:00.875Z" + }, + { + "id": "833c969c-815d-48ef-a754-9d6718cbe4f8", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.879Z", + "updatedAt": "2023-09-11T18:11:00.879Z" + }, + { + "id": "44b5685c-8ec7-4f1c-bd6c-c8447ae85a27", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.881Z", + "updatedAt": "2023-09-11T18:11:00.881Z" + }, + { + "id": "cb7f0613-591f-4fde-b5b0-406e01dc3dd6", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.885Z", + "updatedAt": "2023-09-11T18:11:00.885Z" + }, + { + "id": "586714d4-695b-4ae6-a42d-c001ecf6463a", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.888Z", + "updatedAt": "2023-09-11T18:11:00.888Z" + }, + { + "id": "e129dcee-2b51-402d-8e30-bdfba1755520", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.890Z", + "updatedAt": "2023-09-11T18:11:00.890Z" + }, + { + "id": "e4d11fac-5bbc-4988-b737-b2da7a3104c3", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.893Z", + "updatedAt": "2023-09-11T18:11:00.893Z" + }, + { + "id": "5a650bc5-6bfe-4871-8394-0d33b6073c5b", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.895Z", + "updatedAt": "2023-09-11T18:11:00.895Z" + }, + { + "id": "75a7c301-3b1f-44f6-b39e-05471844374f", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.897Z", + "updatedAt": "2023-09-11T18:11:00.897Z" + }, + { + "id": "589eead6-40c6-48d9-afe2-d7ed3b444a28", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.901Z", + "updatedAt": "2023-09-11T18:11:00.901Z" + }, + { + "id": "51968dcb-089c-43ae-9556-669456135607", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.903Z", + "updatedAt": "2023-09-11T18:11:00.903Z" + }, + { + "id": "2c3d0b2f-9f39-40df-9f41-dabedb0b9492", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.905Z", + "updatedAt": "2023-09-11T18:11:00.905Z" + }, + { + "id": "d6148b7c-2128-4811-a57a-2330f8209c49", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.911Z", + "updatedAt": "2023-09-11T18:11:00.911Z" + }, + { + "id": "8f230473-a489-4d9a-8f28-0e1fdc446edf", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.914Z", + "updatedAt": "2023-09-11T18:11:00.914Z" + }, + { + "id": "a72c4f12-6497-4196-a766-c2dd1470320f", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.916Z", + "updatedAt": "2023-09-11T18:11:00.916Z" + }, + { + "id": "49abc85e-8b91-4ea4-aa10-b7ee18c627fa", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b0460900-6a0d-4798-b107-3713a887f0b4", + "encrypted": true + }, + "bearer_token": { + "credential_id": "0c77121e-5cd0-4b7b-b02f-1b5074df0341", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e3246e5a-a58e-4599-b70a-fe1859a27e18", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.635Z" + }, + { + "id": "aaa2f6eb-08b9-41e3-9ce1-9cab650eece9", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9b5b8b8b-8ff4-4f8d-b5d1-bbb23c706052", + "encrypted": true + }, + "bearer_token": { + "credential_id": "7bf0b7f4-e659-46c7-8cd9-05e0c3393c73", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "a3a6813e-227c-4cab-b513-eea0b3ce4a3c", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.645Z" + }, + { + "id": "6421f2c0-bc11-4a6b-8cba-87249c888e7d", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7584ee6e-06b2-4ff5-a66f-724e169e5e3d", + "encrypted": true + }, + "bearer_token": { + "credential_id": "aba34fdd-d13e-45ab-8fad-2857c82b3fbb", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "41e67acb-ef8e-4063-b5c5-0484997aa45e", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.646Z" + }, + { + "id": "26a69562-bcb4-49e8-a6c7-8277efd9cf93", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "76e0ebc2-0c89-4c92-82d6-60b32daa0ef4", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e8ba03f7-85d0-4209-a04e-df6541f3b8c8", + "encrypted": true + }, + "bearer_token": { + "credential_id": "c93ec91b-8f13-4027-a7b8-fd1d85fd2ede", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.253Z" + }, + { + "id": "349ccd27-d0c2-4a2c-8f9d-c25c828b499e", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e54d8e8b-4754-42e4-b443-8e3fbc4c41ed", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "0a89973a-6612-4e8a-85be-04737a01c475", + "encrypted": true + }, + "bearer_token": { + "credential_id": "b4def6fe-6194-4fc7-a1aa-c7d5112c66bf", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.265Z" + }, + { + "id": "6aaeccbd-6817-4d57-be9a-38292d84dba6", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "8be25480-f672-4392-b0f0-49d3671c37bc", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c35da044-64a1-46cb-be8c-1a584ee843f9", + "encrypted": true + }, + "bearer_token": { + "credential_id": "16765afc-6cf7-40f9-9c96-2f76a4049e3a", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.267Z" + }, + { + "id": "54e35441-2b26-4f25-b2a9-29a6ecee2c4f", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "79785d32-3918-4fa5-8ffb-27a38e28fc88", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "d5b84d8f-fa2a-4571-b601-bb0cfd528db6", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "9c60f1aa-48e0-4fc9-86fa-ec28ba300680", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "c348f79b-cc81-42a5-9f78-4712159b7fd1", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "ec909322-ea53-48ce-aa77-19d39ad28e8b", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "9db09200-91d3-4bf4-b4a4-1e5acdbe06d3", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "8d16cc16-1c17-44c1-b6e8-6679425e19e8", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "30dfbc76-5010-462c-aab9-337587984e94", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "41dd15b1-8c32-4ac9-9c39-a94b921b514e", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "7a9c3ee0-b02d-4fef-8e05-cd3c5ca827cf", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "825533f2-ca52-4ca1-9e68-89d0fc4d11e5", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "0b675807-8cb6-44cd-ba56-17b87cd8a493", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "63c2b598-8a90-4450-90f9-d47b0a5c85f6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.631Z" + }, + { + "id": "049bf73b-094b-41b2-87f3-696f38b505b9", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "localhost", + "encrypted": false + }, + "username": { + "value": "localhost", + "encrypted": false + }, + "password": { + "credential_id": "c83dcbbe-2e56-40c4-a2ae-6600159bff6b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:53.756Z" + }, + { + "id": "255c07a2-6573-4c92-b3af-d3ce3ef42f5f", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "a4b8c404-a080-4329-b50f-ec8942ea7f7e", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.625Z" + }, + { + "id": "a63f7287-37f6-414e-8889-b462eb0b57be", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "597074ae-9800-4409-91c3-1408410d1c6c", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "928a1535-6acc-48bf-afc7-1e3ae2244a33", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "6ff92d12-603a-4549-8b9e-9ac1b92e83f5", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "d2674a10-11c2-4a28-81db-1c08cac1fbe0", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "6ab109a4-6f83-4b14-883e-c8c05f46f9c9", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "0e5dcd88-49a1-4d7f-8f10-34d41bed45a5", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "7a2964c8-03a4-48a1-99d4-7a25b61462f3", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "b27b0ee7-4fdb-4d8e-9d81-2289498a64f0", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "2448c268-6dfd-43a6-9555-f68df51b45b6", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "15074c6a-c8f5-409e-9f9b-349152bd5f66", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "3fcf6c9b-bbf8-45f9-8840-87bddcdddc0f", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "b2c64855-286f-47f5-b790-9fe2cb1e6695", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "e4cdf417-b76f-4123-ae6c-41f9667f5669", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "ed1aa47d-55b8-42d4-9469-82d8f92ad4d2", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "288a7b6d-b625-4005-93dc-dcd7a8653b24", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "cc151dc1-999e-42b2-93d0-072fa91be3b2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.643Z" + }, + { + "id": "3e89cd97-66b5-4ea7-b14f-e590b12e19c4", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "480a763d-7773-43ef-83df-1124a96b1cab", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.635Z" + }, + { + "id": "57b35a07-ae7f-46f1-91ed-d34d0273e5bc", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "inventory_management", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "93da8ad2-d11c-42c6-ba7f-ac0c7be23251", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-22T10:27:25.819Z" + }, + { + "id": "840bc336-5bad-4442-9305-3355bf5940f4", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "83fcf4c6-ec28-4d1b-8bc9-9a4df406b9d1", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "1da83b26-ecef-44f4-b8ca-50e4641656d2", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "200d45fe-aad3-4add-b4ba-751e54521f14", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "cd7e82ec-b280-4a94-9850-159e35af72b3", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "63a0cbae-327e-4ed5-b76f-5842818e84c6", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "86d931b7-edf3-4b21-baaf-b150f8dc4fc0", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e91edce3-9ecb-4026-a47a-591a39465333", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e880b9ea-a2b2-417f-a164-f1d834506323", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e3ef7c7b-fed2-44c0-87b2-55283ac90e75", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "8163b518-d9ef-4714-b33f-8537c0a48903", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "8b5a287f-08dd-42c1-9179-0a55cd4f7310", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "7b54ce24-7ca8-414a-a72c-d50950eb3949", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "4badeb69-2c38-4c4e-80f3-fc3f58ec2223", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "6c514b05-e8d2-4d81-ac64-61d4d09191a4", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "adef1faa-4651-478f-a834-1934b4c61a99", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "ebfcf35f-2955-4212-967f-cebcddf16c8a", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "220eb433-49a8-4d49-84c4-f285536e3868", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "0faaacfa-d389-4e66-ac7f-8c93afc5a13e", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "7da7ea08-cf60-4404-9031-c83776671656", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "6dbc8c78-986e-4079-bbfb-ce4a200b4bf5", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "e345b259-fce4-4b2f-8b19-719427b4eb31", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "8e7ef01c-7c06-47a4-8db2-e45357b24ba1", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "019dd8be-5efd-4428-9bee-a389486c5a32", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "5a4cc34a-da23-4a08-badd-bb26130a5913", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "b9b7047b-000c-47cf-bd68-7d6dfbdea44b", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "04c7d955-12a3-451f-a016-c597724f8cd9", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "3c9adfd7-1064-4999-acb6-b94c5196cc72", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "8fee3e7e-7d30-4fe2-9342-ddb09ad7b6e1", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "4f7e0db0-c05a-4a5b-a99b-fdb170901049", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "106e6bb8-7d31-4028-a436-2db539aa3ec1", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "31785b20-89f8-4de5-bf54-1debc1ca261a", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.058Z", + "updatedAt": "2023-09-26T04:59:51.058Z" + }, + { + "id": "6ad412e2-170b-42a5-895f-f841ec47e3c5", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "0cc48002-fd62-4b80-a02a-a04329030e7d", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.063Z", + "updatedAt": "2023-09-27T06:59:36.470Z" + }, + { + "id": "907f19fe-d074-4cd7-adb5-5cb3353d855c", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "4175f457-72d6-4838-b23a-895c9f1479cf", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.068Z", + "updatedAt": "2023-09-26T04:59:51.068Z" + }, + { + "id": "78b3f9e0-8124-4d37-8da3-788d35f9f4d3", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "d85fe433-175b-42b6-afda-4eacc1398a22", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "b3f1ca23-5dc4-441a-9ccf-608db6d746e7", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "d3181e60-88eb-4ed2-8234-877abb1cca21", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "fc2da525-f539-454c-824a-8fda6127e9e0", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "3e8cbe50-7a5b-44ba-b366-b80ffee166ff", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "e05b1995-20c8-4f02-a62c-bb2478baf4ef", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "2358c3c3-e4d1-400f-9069-20186bbdb0a7", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "0899c00c-8a3b-4d41-937c-1925c8958297", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "43b65b50-ddd3-4cdc-8579-b55a404717be", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "65c6b204-5842-490b-9ec6-81e52146ab69", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "08f74263-9282-4214-bb80-fc71196cd104", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "035e7958-ac6f-4873-9df1-8c487eeb4d8f", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "2e84b8b5-e7ae-41ca-86bb-4a0d75e3cdbd", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "931c6a61-e93e-42f8-88d0-3069772a01e4", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "df31bda5-d452-4446-adb6-ae4292cfd6c9", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "edab30b9-76cf-46b8-818f-1f34ef222a77", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "209858f9-b486-4105-ab34-75efb3b3faed", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "230ba931-70ab-44e2-b44a-2f60c96c5361", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "e3415f04-a642-4505-b50c-7ea030a8eaeb", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "aeba310e-6507-4d43-82eb-ba8861067b36", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "f874078b-2a8a-4fe8-b7f8-fdefa9c8beaf", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.905Z", + "updatedAt": "2023-09-27T16:45:57.905Z" + }, + { + "id": "2bfb1a7c-823e-4359-b049-4a61db34b911", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "5bb80934-9d75-49cc-a9a3-3e8bb3b90c34", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "7078020a-7967-4597-82fc-a31f0b1cf21e", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "991135d2-7671-45ed-b316-63f03b7a34f0", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.615Z" + }, + { + "id": "d3532cce-f05c-4157-b482-d4632ef19c0c", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "35.193.152.84", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "72f1b57e-ed9d-4eb1-b628-d35d0d6bec78", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-10-03T13:27:33.903Z" + }, + { + "id": "a8648171-928a-48ef-ac7c-2d1cb8bbae6d", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7fd0ea56-a4c5-421c-ac04-c707fd30037a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.609Z" + }, + { + "id": "5751c539-28cc-4065-b4f2-f321bbe3ee23", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e97c34c1-13bc-4b5f-b240-cc7acc59541a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.799Z" + }, + { + "id": "bf2ce691-b6e1-442b-a649-793d30a9db60", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c4cb2ddd-2504-4457-971e-18f96940393f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.806Z" + }, + { + "id": "a765cdaa-0387-461c-bdaa-63b5353028c0", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "8b910d98-de4b-4e9a-bd11-c9004aa81e48", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.805Z" + }, + { + "id": "7ab8dd61-1478-4003-b7e3-c9546edcd991", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1ad53f8b-ec0e-4492-ac40-24185178d044", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.650Z" + }, + { + "id": "5ea174ed-1189-4646-b93a-05e4ced753b9", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "d9ad9526-6249-4615-b7c6-e0e0f6425658", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:36:58.100Z" + }, + { + "id": "512396b8-88c7-4964-a57d-0236373d14fd", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c3673de1-1377-4752-b9a9-743ac1ec76a5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.642Z" + }, + { + "id": "5c4588ab-8993-455a-b005-6554c3873b8c", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "34d29e8e-3494-4281-9a91-b7f6806002c0", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "a2d691b8-0378-4f0a-ade6-f24c6158578d", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "56da9e7f-bed6-47de-ac08-c0d733f93b5d", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "f68516ae-87a5-421a-b396-5e7510c16763", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "159e5e0b-3e3d-4306-a6b2-ff9b052172c4", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "412ce914-c49e-4a81-bcfe-51077d6d17a2", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "bc62f0c9-0d44-47ac-a25f-41459e0d5fc4", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "227b7d0e-bf04-4481-b137-ad1b23f9ac77", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "007bd34a-9123-4936-933c-2433c6edd899", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "a4a1cf81-f577-423e-9544-4ff7796cb289", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "cbd1819f-a223-4207-bea6-d6576f57ea2c", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "ac8cc42f-2ada-41f7-b93f-01c64fb3bde6", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "d5073421-b5c5-47b5-b4bc-3cad17267c81", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "9b773b6b-ea5b-4b4b-b01e-b4dc90142c94", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "85af5670-1dbe-4e33-9e71-38e3d63f785f", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "323825dd-363e-4e0d-93ff-b7c26ebff3a1", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "51c5eee4-0af2-4c2b-b711-970b5ae74485", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "86a9a4fd-bf05-4770-be53-b8cf2d00c9e6", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "a3d42ef6-7f48-45ad-90a6-c7980d48c12a", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "14b82dee-24eb-4a94-8559-0d9ed6b63d77", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "76971c88-7f60-4297-a6c9-e3666c7b6758", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "b9220430-0410-4bc6-bfed-605f0f92a2ea", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "703288c6-0a61-4744-a16e-687aea9f9a4c", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "feec231b-a32a-4dba-9ce3-41fc172280d2", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "d0692d6c-6b12-4e7c-9cce-64039fcb5ca6", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "bb66eed0-6019-43cf-bb27-a3db15ebee93", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "b5583a48-33ea-48bd-83b5-21ce845a0875", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "a14b567d-5d54-49be-89b4-91b2738c1ca2", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "e4213486-4c50-4874-b98b-299b7f94ab65", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "7f90955a-1301-4773-b110-5970fc71038c", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "872c8f9a-636a-4e22-8386-a544ad4020b9", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.617Z", + "updatedAt": "2023-10-10T09:21:50.617Z" + }, + { + "id": "79a2ecaf-ad5a-4aab-a44c-cb2bc99a8835", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "7fb74b90-480f-4da5-9a34-f7087f8483ab", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.622Z", + "updatedAt": "2023-10-10T09:21:50.622Z" + }, + { + "id": "babdb5a2-4dc2-4a39-909e-1e0b547ca030", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "c896ddb1-70e1-4b57-9739-b7e4069e1262", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.626Z", + "updatedAt": "2023-10-10T09:21:50.626Z" + }, + { + "id": "6f2b7870-2f24-435f-badc-eba159c0edc0", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "6ba822d7-b917-49e9-a6ff-9a042fc87c08", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "34f7f3f9-cab0-4e65-bc88-ed4a2e7fbfa1", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "cb19358c-f4b9-4ae0-9ff1-ab5f037f4e7a", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "c67db9b9-9cd7-4daf-9bdd-513229ea2ae8", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "000997b8-464f-40e8-8f3a-4510ae73fbfe", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "26cd77c6-6387-48ca-92b6-f943a90da690", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "54208746-afd8-4d2d-9fe1-5d2f064c8a07", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "44130f59-3942-4b23-b117-13800ac78881", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "66bf88db-3432-455c-9a5e-d5b59378858f", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "18344317-96be-41f3-a4ce-6f769f104323", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "013ef1c8-af8a-4019-b68f-f9a1d2ef7e64", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "ea038e59-5a5e-40b6-b09a-2356ee1a5e21", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "998dc168-7f06-45fe-890e-753fe2788326", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "78812b07-46d1-42f2-828d-51d0a1546358", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + } + ], + "schemaDetails": { + "multiPages": true, + "multiEnv": true, + "globalDataSources": true + } + } + } + } + ], + "tooljet_version": "2.19.2-ee2.7.0-cloud2.0.9" +} diff --git a/server/templates/lead-management-system/manifest.json b/server/templates/lead-management-system/manifest.json new file mode 100644 index 0000000000..00b538d9ec --- /dev/null +++ b/server/templates/lead-management-system/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "Lead management system", + "description": "The Lead Management System template streamlines lead lifecycle with four status templates: Leads (capturing potential leads) and Opportunities (converting leads), along with Customers (effective relationship management) and Lost (learning from lost opportunities).", + "widgets": ["Table", "Chart"], + "sources": [ + { + "name": "Tooljet Database", + "id": "tooljetdb" + } + ], + "id": "lead-management-system", + "category": "sales" +} diff --git a/server/templates/sales-analytics-dashboard/definition.json b/server/templates/sales-analytics-dashboard/definition.json new file mode 100644 index 0000000000..c31dc6b55c --- /dev/null +++ b/server/templates/sales-analytics-dashboard/definition.json @@ -0,0 +1,70760 @@ +{ + "tooljet_database": [ + { + "id": "da33a5fe-ada5-4dd1-8218-f3572a33aabe", + "table_name": "sales_analytics_products", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"da33a5fe-ada5-4dd1-8218-f3572a33aabe_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "type", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "brand", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "qty_in_stock", + "data_type": "integer", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "current_price", + "data_type": "double precision", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 53, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "created_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "updated_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "is_active", + "data_type": "boolean", + "column_default": "true", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + }, + { + "id": "cdb1dd71-591f-4e2d-a939-706d3e5e5ea0", + "table_name": "sales_analytics_customers", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"cdb1dd71-591f-4e2d-a939-706d3e5e5ea0_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "email", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "company", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "created_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "updated_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "is_active", + "data_type": "boolean", + "column_default": "true", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "country", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + }, + { + "id": "a13820a6-bc6a-448c-a348-384adb75c48d", + "table_name": "sales_analytics_orders", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"a13820a6-bc6a-448c-a348-384adb75c48d_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "customer_id", + "data_type": "integer", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "product_id", + "data_type": "integer", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "quantity", + "data_type": "integer", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "at_price", + "data_type": "double precision", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 53, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "total_price", + "data_type": "double precision", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 53, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "created_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "updated_at", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "is_active", + "data_type": "boolean", + "column_default": "true", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "product_name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "country", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + } + ], + "app": [ + { + "definition": { + "appV2": { + "id": "7e2569c0-debc-4e6f-80b6-39defd06b40c", + "type": "front-end", + "name": "Sales analytics dashboard", + "slug": "7e2569c0-debc-4e6f-80b6-39defd06b40c", + "isPublic": false, + "isMaintenanceOn": false, + "icon": "layers", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "currentVersionId": null, + "userId": "ccf51822-9d82-4d82-81dd-22df9f3cfcfc", + "createdAt": "2023-09-11T18:11:00.809Z", + "updatedAt": "2023-10-10T10:42:54.248Z", + "editingVersion": { + "id": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "cbd7f186-e2c5-4443-97c6-ccb0e7f37f38", + "pages": { + "cbd7f186-e2c5-4443-97c6-ccb0e7f37f38": { + "components": { + "5e82a221-8213-4caf-817c-88f97d8e4883": { + "component": { + "properties": { + "tabs": { + "type": "code", + "displayName": "Tabs", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + } + } + }, + "defaultTab": { + "type": "code", + "displayName": "Default tab", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "hideTabs": { + "type": "toggle", + "displayName": "Hide Tabs", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "renderOnlyActiveTab": { + "type": "toggle", + "displayName": "Render only active tab", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onTabSwitch": { + "displayName": "On tab switch" + } + }, + "styles": { + "highlightColor": { + "type": "color", + "displayName": "Highlight Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "tabWidth": { + "type": "select", + "displayName": "Tab width", + "options": [ + { + "name": "Auto", + "value": "auto" + }, + { + "name": "Equally split", + "value": "split" + } + ] + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "highlightColor": { + "value": "#4f81ffff", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "tabWidth": { + "value": "auto" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "tabs": { + "value": "{{[\n { title: \"Overview\", id: \"0\" },\n { title: \"Orders\", id: \"3\" },\n { title: \"Customers\", id: \"1\" },\n { title: \"Products\", id: \"2\" },\n]}}" + }, + "defaultTab": { + "value": "0" + }, + "hideTabs": { + "value": false + }, + "renderOnlyActiveTab": { + "value": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "tabs1", + "displayName": "Tabs", + "description": "Tabs component", + "defaultSize": { + "width": 30, + "height": 300 + }, + "defaultChildren": [ + { + "componentName": "Image", + "layout": { + "top": 60, + "left": 37, + "height": 100 + }, + "tab": 0, + "properties": ["source"], + "defaultValue": { + "source": "https://uploads-ssl.webflow.com/6266634263b9179f76b2236e/62666392f32677b5cb2fb84b_logo.svg" + } + }, + { + "componentName": "Text", + "layout": { + "top": 100, + "left": 17, + "height": 50, + "width": 34 + }, + "tab": 1, + "properties": ["text"], + "defaultValue": { + "text": "Open-source low-code framework to build & deploy internal tools within minutes." + } + }, + { + "componentName": "Table", + "layout": { + "top": 0, + "left": 1, + "width": 42, + "height": 250 + }, + "tab": 2 + } + ], + "component": "Tabs", + "actions": [ + { + "handle": "setTab", + "displayName": "Set current tab", + "params": [ + { + "handle": "id", + "displayName": "Id" + } + ] + } + ], + "exposedVariables": { + "currentTab": "" + } + }, + "layouts": { + "desktop": { + "top": 70, + "left": 0, + "width": 43, + "height": 640 + } + }, + "withDefaultChildren": false + }, + "64c60f67-ae5f-4fec-a74e-9b62100503be": { + "id": "64c60f67-ae5f-4fec-a74e-9b62100503be", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getCustomers.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.getCustomers.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true + }, + { + "name": "company", + "id": "e9460e25-9cff-4961-8ac9-39516d7a5981" + }, + { + "id": "d3be2482-e0ca-4347-bd71-2c3241631952", + "name": "country", + "key": "country", + "columnType": "string", + "autogenerated": true + }, + { + "name": "created_at", + "id": "3d5ce08d-82a5-44b7-939c-126dafffb4a0" + }, + { + "name": "updated_at", + "id": "7fe6cdb6-cd92-4bb7-bdb3-fd0aebe3f003" + } + ] + }, + "showBulkUpdateActions": { + "value": "{{true}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 241, + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 102, + "rightActions": 72, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 207, + "leftActions": 104, + "e9460e25-9cff-4961-8ac9-39516d7a5981": 160, + "d1d6d6f1-3f08-465b-8080-829a460d0b78": 242, + "7278dc62-35af-4b8c-b8ef-ae11897de851": 104, + "d3be2482-e0ca-4347-bd71-2c3241631952": 174 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "View details", + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "2a7a0455-0855-487d-94d0-3c183747ce2c", + "queryName": "getCustomerOrders", + "parameters": {} + } + ], + "position": "left", + "disableActionButton": "{{false}}", + "textColor": "#213b81ff", + "backgroundColor": "#f0f6ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "order date", + "product", + "quantity", + "is_active" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80.00003051757812, + "left": 2.325580249259922, + "width": 41, + "height": 490 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-1" + }, + "9196a79f-d2d0-4945-a18c-461621110d6d": { + "id": "9196a79f-d2d0-4945-a18c-461621110d6d", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .avgOrderValue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) *\n 100\n) > 0\n ? \"#36AF8B\"\n : \"#EE2C4D\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Average Order Value ($)" + }, + "primaryValue": { + "value": "{{queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].avgOrderValue}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{`${(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .avgOrderValue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) *\n 100\n).toFixed(2)}%`}}" + }, + "secondarySignDisplay": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .avgOrderValue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) *\n 100\n) > 0\n ? \"positive\"\n : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics1", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 30, + "left": 74.41860383993948, + "width": 9.999999999999998, + "height": 170 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "866b47b2-bf23-4ef8-bf0b-26fa857ed807": { + "id": "866b47b2-bf23-4ef8-bf0b-26fa857ed807", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .customerIds.size -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) *\n 100\n) > 0\n ? \"#36AF8B\"\n : \"#EE2C4D\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Total customers" + }, + "primaryValue": { + "value": "{{queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].customerIds.size}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{`${(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .customerIds.size -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) *\n 100\n).toFixed(2)}%`}}" + }, + "secondarySignDisplay": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .customerIds.size -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) *\n 100\n) > 0\n ? \"positive\"\n : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics2", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 30, + "left": 2.3255812455980243, + "width": 9, + "height": 170 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "3168ef8d-15d1-44c5-827a-cf183d11cf98": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{ !queries.getCustomers.isLoading }}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`${queries?.getCustomers?.data?.length ?? 0} Customers`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text2", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-1", + "layouts": { + "desktop": { + "top": 20, + "left": 2.325595995777369, + "width": 14, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "a291e07a-cb22-4f02-b05d-40707ee14e2c": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#213b81ff" + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4D72FA" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Customer" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Launch Modal" + }, + "size": { + "value": "xl" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "920px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal2", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 750.000057220459, + "left": 2.3256077478684265, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "6611ee93-dfd1-42c6-b002-439bb005eca2": { + "id": "6611ee93-dfd1-42c6-b002-439bb005eca2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text4", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 4.6511635881258995, + "width": 5, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "af78e81a-11f3-472a-b66b-73327dde099d": { + "id": "af78e81a-11f3-472a-b66b-73327dde099d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 4.651161793912395, + "width": 5, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "bd544998-d2ae-4ad2-af4f-f0683eea8e1b": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput1.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{6}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput1.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.name}}" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 60, + "left": 16.279067969008917, + "width": 14, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "98b9b1cc-fe4f-4db7-b534-b22ad4c4eadd": { + "id": "98b9b1cc-fe4f-4db7-b534-b22ad4c4eadd", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput2.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{6}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput2.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.email}}" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 16.279068577527127, + "width": 14, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "9deaf722-d8f3-4d64-afab-a3c25782a26e": { + "id": "9deaf722-d8f3-4d64-afab-a3c25782a26e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput3.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{6}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput3.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.company}}" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput3", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 16.27906704285889, + "width": 14, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "36bec844-5b66-478c-814d-257a91e59b80": { + "id": "36bec844-5b66-478c-814d-257a91e59b80", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Company" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 4.6511635881258995, + "width": 5, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "c52fa65e-c16c-4315-a0e1-dd7c80839b9d": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 830, + "left": 3.134246213676306e-7, + "width": 43, + "height": 10 + } + }, + "withDefaultChildren": false + }, + "8afb3d48-36eb-449c-8d2f-a17c36941493": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "369acf3e-3774-4aa3-9afe-916f32b66713", + "queryName": "checkProductQuantity", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": false + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213B81", + "fxActive": true + }, + "disabledState": { + "value": "{{components.dropdown2.value == undefined || components.dropdown3.value == undefined}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Order" + }, + "loadingState": { + "value": "{{queries.checkProductQuantity.isLoading || queries.reduceProductQuantity.isLoading || queries.addOrder.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 860, + "left": 83.72093023255815, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "8d1bc6ea-d601-48f5-99b7-80fd0ab607e1": { + "id": "8d1bc6ea-d601-48f5-99b7-80fd0ab607e1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffff80" + }, + "textColor": { + "value": "#213b81ff" + }, + "loaderColor": { + "value": "#213b81ff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213b81ff" + }, + "disabledState": { + "value": "{{false}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 860, + "left": 72.09302215268106, + "width": 4, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "d4e9af65-5062-458c-b2f4-f0b6afdea142": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff00", + "fxActive": false + }, + "textColor": { + "value": "#213B81", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Customer Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 10, + "left": 4.651166276216096, + "width": 14, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "a72bb1eb-afe6-463f-9b80-077ed0d7f748": { + "id": "a72bb1eb-afe6-463f-9b80-077ed0d7f748", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 380, + "left": 4.651201625160855, + "width": 14, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "18505c13-2546-4f7e-89f2-59768b29ce57": { + "id": "18505c13-2546-4f7e-89f2-59768b29ce57", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{ !queries.getProducts.isLoading }}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`${queries?.getProducts?.data?.length ?? 0} Products`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 2.3255869327817056, + "width": 14, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "724ff2bb-3b5c-448e-944d-e176705b34db": { + "id": "724ff2bb-3b5c-448e-944d-e176705b34db", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getProducts.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.getProducts.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "id": "6ff6f2d1-ae39-4f01-9f02-001a75567deb", + "name": "name", + "key": "name", + "columnType": "string", + "autogenerated": true + }, + { + "name": "type", + "id": "e9460e25-9cff-4961-8ac9-39516d7a5981", + "columnType": "default" + }, + { + "name": "brand", + "id": "d1d6d6f1-3f08-465b-8080-829a460d0b78", + "columnType": "default" + }, + { + "name": "qty_in_stock", + "id": "7278dc62-35af-4b8c-b8ef-ae11897de851" + }, + { + "id": "d9d4cf35-b1d4-4179-b16e-b6688c69eb3a", + "name": "current_price", + "key": "current_price", + "columnType": "number", + "autogenerated": true + }, + { + "id": "4b3fb0f6-a827-465e-bdf5-7b607d27507b", + "name": "created_at", + "key": "created_at", + "columnType": "string", + "autogenerated": true + }, + { + "id": "7b0c396a-aaee-4485-aebc-c8281b19f3bf", + "name": "updated_at", + "key": "updated_at", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{true}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 65, + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 102, + "rightActions": 72, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 140, + "leftActions": 72, + "e9460e25-9cff-4961-8ac9-39516d7a5981": 183, + "d1d6d6f1-3f08-465b-8080-829a460d0b78": 160, + "7278dc62-35af-4b8c-b8ef-ae11897de851": 175, + "6ff6f2d1-ae39-4f01-9f02-001a75567deb": 247, + "d9d4cf35-b1d4-4179-b16e-b6688c69eb3a": 178 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Edit", + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + } + ], + "position": "left", + "disableActionButton": "{{false}}", + "backgroundColor": "#f0f6ffff", + "textColor": "#213b81ff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "order date", + "Qty sold", + "email", + "is_active" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table2", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 2.3255813953488373, + "width": 41, + "height": 490 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1": { + "id": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffff1a" + }, + "headerTextColor": { + "value": "#213b81ff" + }, + "bodyBackgroundColor": { + "value": "#ffffff1a" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "380px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal6", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 67.44186080042796, + "width": 4.999999999999999, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "d6887251-aeec-4c61-9ed5-7857a629f548": { + "id": "d6887251-aeec-4c61-9ed5-7857a629f548", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 4.651168424894576, + "width": 3, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "429efd49-6f00-4425-a9c3-85999698c138": { + "id": "429efd49-6f00-4425-a9c3-85999698c138", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput13.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput13.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput13", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 11.62790689160906, + "width": 36, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "52e43826-1aa0-49b4-a4d3-a135f884fa70": { + "id": "52e43826-1aa0-49b4-a4d3-a135f884fa70", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput14.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput14.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput14", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 60.46510288959324, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "a89caaeb-b9f0-4a38-adde-f77707b64939": { + "id": "a89caaeb-b9f0-4a38-adde-f77707b64939", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Brand" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.16279745082527, + "width": 4, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "16a11718-2e5f-4fb8-a89a-5e1636c83c7f": { + "id": "16a11718-2e5f-4fb8-a89a-5e1636c83c7f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider5", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 280, + "left": 4.00079841256229e-7, + "width": 43, + "height": 10 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "0a12ce5c-5511-4027-9764-054b6752659b": { + "id": "0a12ce5c-5511-4027-9764-054b6752659b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "693b5371-72c6-426d-8253-7cce3b1594ac", + "queryName": "addProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213B81", + "fxActive": true + }, + "disabledState": { + "value": "{{ !components.textinput13.isValid || !components.textinput14.isValid || !components.dropdown4.isValid || !components.textinput18.isValid || !components.textinput19.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Product" + }, + "loadingState": { + "value": "{{queries.addProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button9", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 310, + "left": 76.74419092490663, + "width": 8, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "7ca82553-80e7-421b-b278-5a00d0250b89": { + "id": "7ca82553-80e7-421b-b278-5a00d0250b89", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#213b81ff" + }, + "loaderColor": { + "value": "#213b81ff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213b81ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button10", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 310, + "left": 62.79068219897656, + "width": 5, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "c511607b-5a00-418c-b814-5b9ccf8fa4bf": { + "id": "c511607b-5a00-418c-b814-5b9ccf8fa4bf", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text33", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 4.6511560061557224, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "89304548-d603-41fb-8696-c77096ff17d6": { + "id": "89304548-d603-41fb-8696-c77096ff17d6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text35", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 51.16278773230763, + "width": 4, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "0110ef71-686f-4c85-a85b-4d47a80111b8": { + "id": "0110ef71-686f-4c85-a85b-4d47a80111b8", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "50" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Sales per country this year" + }, + "markerColor": { + "value": "#CDE1F8" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading || queries.ordersAnalyticsAfterColors.isLoading}}", + "fxActive": true + }, + "jsonDescription": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading || queries.ordersAnalyticsAfterColors.isLoading || queries.getOrders.data.length == 0 ? \"{}\" : JSON.stringify(queries?.ordersAnalyticsAfterColors?.data ?? {})}}" + }, + "type": { + "value": "line" + }, + "data": { + "value": "[\n { \"x\": \"Jan\", \"y\": 100},\n { \"x\": \"Feb\", \"y\": 80},\n { \"x\": \"Mar\", \"y\": 40}\n]" + }, + "barmode": { + "value": "group" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart3", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "layouts": { + "desktop": { + "top": 230, + "left": 58.13953624532072, + "width": 17, + "height": 330 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "e5d754ff-eb1f-4d1d-945b-65843b32408e": { + "id": "e5d754ff-eb1f-4d1d-945b-65843b32408e", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].revenue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) *\n 100\n) > 0\n ? \"#36AF8B\"\n : \"#EE2C4D\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Revenue ($)" + }, + "primaryValue": { + "value": "{{queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].revenue}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{`${(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].revenue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) *\n 100\n).toFixed(2)}%`}}" + }, + "secondarySignDisplay": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].revenue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) *\n 100\n) > 0\n ? \"positive\"\n : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics4", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 30, + "left": 48.83721329386816, + "width": 9.999999999999998, + "height": 170 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "b91a9efc-f701-4305-be8c-4001a7a80400": { + "id": "b91a9efc-f701-4305-be8c-4001a7a80400", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].qtySold -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) *\n 100\n) > 0\n ? \"#36AF8B\"\n : \"#EE2C4D\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Qty. Sold" + }, + "primaryValue": { + "value": "{{queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].qtySold}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{`${(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].qtySold -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) *\n 100\n).toFixed(2)}%`}}" + }, + "secondarySignDisplay": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].qtySold -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) *\n 100\n) > 0\n ? \"positive\"\n : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics6", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 30, + "left": 25.58139219926747, + "width": 9, + "height": 170 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "f3c8c84e-18b9-4432-aec0-bd92b10d2692": { + "id": "f3c8c84e-18b9-4432-aec0-bd92b10d2692", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "barmode": { + "type": "select", + "displayName": "Bar mode", + "options": [ + { + "name": "Stack", + "value": "stack" + }, + { + "name": "Group", + "value": "group" + }, + { + "name": "Overlay", + "value": "overlay" + }, + { + "name": "Relative", + "value": "relative" + } + ], + "validation": { + "schema": { + "schemas": { + "type": "string" + } + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "50" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Total sales this year" + }, + "markerColor": { + "value": "#5e82e0ff" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{false}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "barmode": { + "value": "group" + }, + "jsonDescription": { + "value": "{\n \"data\": [\n {\n \"x\": [\n \"Jan\",\n \"Feb\",\n \"Mar\",\n \"Jun\",\n \"Jul\",\n \"Aug\",\n \"Sep\",\n \"Oct\",\n \"Nov\",\n \"Dec\"\n \n ],\n \"y\": [\n 100,\n 80,\n 40,\n 60,\n 60,\n 25,\n 0,\n 0,\n 0,\n 0\n ],\n \"type\": \"bar\"\n }\n ]\n }" + }, + "type": { + "value": "bar" + }, + "data": { + "value": "{{Object.values(queries?.ordersAnalytics?.data?.dataPerMonth ?? {}).map(\n (month) => ({\n x: month.monthName,\n y: month.revenue,\n })\n)}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart6", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "layouts": { + "desktop": { + "top": 230, + "left": 2.3255813953488373, + "width": 23, + "height": 330 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "08300762-0eba-4b4d-af8f-2a7fb75fea38": { + "id": "08300762-0eba-4b4d-af8f-2a7fb75fea38", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff00" + }, + "textColor": { + "value": "#213B81", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Orders summary by cost" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text39", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 55.8139500865679, + "width": 14, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "c01bbbf2-ec98-4ae5-a8c9-448266a6289d": { + "id": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#213b81ff" + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#213B81", + "fxActive": false + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add customer" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add customer" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "280px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal7", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 69.76743908216835, + "width": 4.999999999999999, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-1" + }, + "a2b173a3-7b02-4bf7-b423-99b36ae96fcb": { + "id": "a2b173a3-7b02-4bf7-b423-99b36ae96fcb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text42", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 4.651164026267174, + "width": 4, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "46db1ccd-6b3d-4e4f-91e2-f2c9349d04a5": { + "id": "46db1ccd-6b3d-4e4f-91e2-f2c9349d04a5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text43", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 4.651162963972348, + "width": 4, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "b86629b8-e27a-41fb-abe0-7f2541815262": { + "id": "b86629b8-e27a-41fb-abe0-7f2541815262", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput11.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput11.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput11", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60.00001525878906, + "left": 13.953475264081066, + "width": 14, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "ac45c5f5-ed9e-40aa-8711-aa1cd3e71c65": { + "id": "ac45c5f5-ed9e-40aa-8711-aa1cd3e71c65", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput15.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput15.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput15", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120.00001525878906, + "left": 13.953482739224162, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "75b94950-b063-48ec-904d-0bc5174a915f": { + "id": "75b94950-b063-48ec-904d-0bc5174a915f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput16.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput16.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput16", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 62.7907019101015, + "width": 14, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "61447808-eac6-4bc1-90fc-69a4973684a7": { + "id": "61447808-eac6-4bc1-90fc-69a4973684a7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Company" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text44", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 51.16279499745627, + "width": 5, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "5c75dd41-5123-461a-bc60-22d28ff85c61": { + "id": "5c75dd41-5123-461a-bc60-22d28ff85c61", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider7", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 190, + "left": 0, + "width": 43, + "height": 10 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "81e083a2-5d63-4a6c-af1d-18cb9719bd9e": { + "id": "81e083a2-5d63-4a6c-af1d-18cb9719bd9e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "987f39ac-dd30-4346-b04b-ba92c7b3d288", + "queryName": "addCustomer", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "disabledState": { + "value": "{{ !components.textinput11.isValid || !components.textinput15.isValid || !components.textinput16.isValid || !components.dropdown6.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add customer" + }, + "loadingState": { + "value": "{{queries.addCustomer.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button12", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 76.74418426940643, + "width": 8, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "caec1f77-e911-4dda-ae20-25a2c1c1200b": { + "id": "caec1f77-e911-4dda-ae20-25a2c1c1200b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#213b81ff" + }, + "loaderColor": { + "value": "#213b81ff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#213b81ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button13", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 62.79071384658206, + "width": 5, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "4d57de11-54bb-437f-9f4e-47620be2292c": { + "id": "4d57de11-54bb-437f-9f4e-47620be2292c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Customer Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text46", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 4.651154551901468, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "d7053db4-ae15-46a2-aeb5-02daefc2735f": { + "id": "d7053db4-ae15-46a2-aeb5-02daefc2735f", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Type" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text50", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651159034566407, + "width": 3, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "31d79ec2-793a-4140-8cf0-1820ab353db2": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + } + ], + "styles": { + "backgroundColor": { + "value": "#213b81ff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Customer" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button15", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-1", + "layouts": { + "desktop": { + "top": 20, + "left": 83.72092413686282, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "47d3a78b-8435-4a20-a849-3b7c0be713b7": { + "component": { + "properties": { + "data": { + "type": "code", + "displayName": "List data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + } + } + } + }, + "mode": { + "type": "select", + "displayName": "Mode", + "options": [ + { + "name": "list", + "value": "list" + }, + { + "name": "grid", + "value": "grid" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "columns": { + "type": "number", + "displayName": "Columns", + "validation": { + "schema": { + "type": "number" + } + }, + "conditionallyRender": { + "key": "mode", + "value": "grid" + } + }, + "rowHeight": { + "type": "code", + "displayName": "Row height", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "showBorder": { + "type": "code", + "displayName": "Show bottom border", + "validation": { + "schema": { + "type": "boolean" + } + }, + "conditionallyRender": { + "key": "mode", + "value": "list" + } + }, + "enablePagination": { + "type": "toggle", + "displayName": "Enable pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "rowsPerPage": { + "type": "code", + "displayName": "Rows per page", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowClicked": { + "displayName": "Row clicked (Deprecated)" + }, + "onRecordClicked": { + "displayName": "Record clicked" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888880d" + }, + "borderColor": { + "value": "#dadcde" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{10}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "data": { + "value": "{{queries.getCustomerOrders.data}}" + }, + "mode": { + "value": "list" + }, + "columns": { + "value": "{{3}}" + }, + "rowHeight": { + "value": "60" + }, + "visible": { + "value": "{{true}}" + }, + "showBorder": { + "value": "{{true}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "enablePagination": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "listview1", + "displayName": "List View", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 20, + "height": 300 + }, + "defaultChildren": [ + { + "componentName": "Image", + "layout": { + "top": 15, + "left": 6.976744186046512, + "height": 100 + }, + "properties": ["source"], + "accessorKey": "imageURL" + }, + { + "componentName": "Text", + "layout": { + "top": 50, + "left": 27, + "height": 30 + }, + "properties": ["text"], + "accessorKey": "text" + }, + { + "componentName": "Button", + "layout": { + "top": 50, + "left": 60, + "height": 30 + }, + "incrementWidth": 2, + "properties": ["text"], + "accessorKey": "buttonText" + } + ], + "component": "Listview", + "exposedVariables": { + "data": [{}] + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 469.99999237060547, + "left": 4.651161008130597, + "width": 39.00000000000001, + "height": 180 + } + }, + "withDefaultChildren": false + }, + "2befd867-7265-4237-a299-6f5be30c7fea": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{listItem.product_name}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text52", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "47d3a78b-8435-4a20-a849-3b7c0be713b7", + "layouts": { + "desktop": { + "top": 10, + "left": 16.279071031395265, + "width": 15.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "4de2a869-67ad-47b2-8b9c-66b83ef660d8": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`\\$${listItem.total_price.toFixed(2)}`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text53", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "47d3a78b-8435-4a20-a849-3b7c0be713b7", + "layouts": { + "desktop": { + "top": 10, + "left": 55.81395159116008, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ccd2a4d8-608a-4e04-8500-6dc547504c22": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{listItem.quantity}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text54", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "47d3a78b-8435-4a20-a849-3b7c0be713b7", + "layouts": { + "desktop": { + "top": 10, + "left": 79.06976680603806, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59": { + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888880d" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container1", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 420, + "left": 4.651162113937779, + "width": 39.00000000000001, + "height": 50 + } + }, + "withDefaultChildren": false + }, + "6704e8d1-4c9a-4324-a5c3-49357c1a782e": { + "id": "6704e8d1-4c9a-4324-a5c3-49357c1a782e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{10}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text55", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 16.279069134183267, + "width": 10, + "height": 30 + } + }, + "parent": "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59" + }, + "e827c106-75d4-421a-be52-60f0690da520": { + "id": "e827c106-75d4-421a-be52-60f0690da520", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{8}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text56", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 55.8139360981166, + "width": 7, + "height": 30 + } + }, + "parent": "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59" + }, + "d8c49bcc-8d06-4547-bb19-4b7c2a90a17d": { + "id": "d8c49bcc-8d06-4547-bb19-4b7c2a90a17d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text57", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 79.06977213164956, + "width": 7, + "height": 30 + } + }, + "parent": "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59" + }, + "6a9a1d90-0458-45f1-a49d-9563ae18b8d3": { + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#88888826" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 659.999885559082, + "left": 4.651164003236601, + "width": 39.00000000000001, + "height": 50 + } + }, + "withDefaultChildren": false + }, + "21e90e2c-f1eb-440e-b7d6-1d21c15e7f2a": { + "id": "21e90e2c-f1eb-440e-b7d6-1d21c15e7f2a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text58", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 60.465116268814555, + "width": 6.999999999999999, + "height": 40 + } + }, + "parent": "6a9a1d90-0458-45f1-a49d-9563ae18b8d3" + }, + "4f17d16e-758a-49dd-b85d-7a81e8928a2a": { + "id": "4f17d16e-758a-49dd-b85d-7a81e8928a2a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213b81ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{8}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`\\$${queries.getCustomerOrders.data\n .map((order) => order?.total_price ?? 0)\n .reduce((sum, n) => {\n return sum + n;\n }, 0)\n .toFixed(2)}`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text41", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 79.06976744186046, + "width": 8, + "height": 40 + } + }, + "parent": "6a9a1d90-0458-45f1-a49d-9563ae18b8d3" + }, + "4c3768db-31db-48bd-9079-31ae3a7206ef": { + "id": "4c3768db-31db-48bd-9079-31ae3a7206ef", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "09bfbae9-3e36-4a93-b8e0-12e46b902229", + "queryName": "editCustomer", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "disabledState": { + "value": "{{ !components.textinput1.isValid || !components.textinput2.isValid || !components.textinput3.isValid || !components.dropdown7.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Update" + }, + "loadingState": { + "value": "{{queries.editCustomer.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button11", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 39.53488372093023, + "width": 4, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "23653770-571b-4857-a45c-7aba0a6e73c4": { + "id": "23653770-571b-4857-a45c-7aba0a6e73c4", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider9", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 360, + "left": 4.651165636896876, + "width": 39.00000000000001, + "height": 10 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "54cc01e3-231b-42ef-9fb9-d97ad100c25e": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onSelect", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "f2b2d1e8-dc3c-433d-9dcc-acf7f7221ca6", + "queryName": "getProductDetails", + "parameters": {} + } + ], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.checkProductQuantity.isLoading || queries.reduceProductQuantity.isLoading || queries.addOrder.isLoading}}", + "fxActive": true + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{queries.getProducts.data.map(product => product.id)}}" + }, + "display_values": { + "value": "{{queries.getProducts.data.map(product => `${product.brand} - ${product.name}`)}}" + }, + "loadingState": { + "value": "{{queries.getProducts.isLoading}}", + "fxActive": true + }, + "placeholder": { + "value": "Select a product" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 780, + "left": 4.65116070509264, + "width": 16, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "0c102a9f-d84e-429c-936b-e02717dcc7cc": { + "id": "0c102a9f-d84e-429c-936b-e02717dcc7cc", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{0}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text60", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 750, + "left": 4.651164977171899, + "width": 10, + "height": 30 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "ca96e2a1-812e-4f3d-be78-113e693b20b3": { + "id": "ca96e2a1-812e-4f3d-be78-113e693b20b3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{0}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text61", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 750, + "left": 46.511626745762634, + "width": 10, + "height": 30 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "b10da0f8-d9f4-4d1d-be61-7b3accbb2d64": { + "id": "b10da0f8-d9f4-4d1d-be61-7b3accbb2d64", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{0}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total ($)" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text62", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 750, + "left": 76.74418365661388, + "width": 7, + "height": 30 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "47bcf998-1d86-4c9d-9fde-9c738903bad2": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.checkProductQuantity.isLoading || queries.reduceProductQuantity.isLoading || queries.addOrder.isLoading}}", + "fxActive": true + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{Array.from({length: queries?.getProductDetails?.data?.qty_in_stock ?? 0}, (_, i) => i + 1)}}" + }, + "display_values": { + "value": "{{Array.from({length: queries?.getProductDetails?.data?.qty_in_stock ?? 0}, (_, i) => i + 1)}}" + }, + "loadingState": { + "value": "{{queries.getProductDetails.isLoading}}", + "fxActive": true + }, + "placeholder": { + "value": "Select quantity" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown3", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 780, + "left": 46.51162072672183, + "width": 11.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "57aa09a1-81be-4734-bade-28355cd09e3e": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "{{((components?.dropdown3?.value ?? 0) * (queries?.getProductDetails?.data?.current_price ?? 0)).toFixed(2)}}" + }, + "placeholder": { + "value": "0" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput17", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 780, + "left": 76.7441870145945, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "338a534e-e7e9-4248-bf55-fa457b7516d2": { + "id": "338a534e-e7e9-4248-bf55-fa457b7516d2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + } + ], + "styles": { + "backgroundColor": { + "value": "#213b81ff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button14", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 83.72091289215417, + "width": 6, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "8fef9dce-58f0-4727-ae46-dea836b63888": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown4.value != undefined ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown4.value != undefined ? true : \"\"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{[\"appliances\", \"beauty\", \"electronics\", \"kitchen\", \"stationary\"]}}" + }, + "display_values": { + "value": "{{[\"Appliances\", \"Beauty\", \"Electronics\", \"Kitchen\", \"Stationary\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select type of product" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown4", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1", + "layouts": { + "desktop": { + "top": 140, + "left": 11.62790224971062, + "width": 15, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "3d8d2ff7-e634-4ee5-b941-c4c8b21cd402": { + "id": "3d8d2ff7-e634-4ee5-b941-c4c8b21cd402", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^\\d+$/.test(components.textinput18.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^\\d+$/.test(components.textinput18.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter quantity to be added" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput18", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 60.46510156732731, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "0441f736-54ce-4cf9-ba60-faccf154124a": { + "id": "0441f736-54ce-4cf9-ba60-faccf154124a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text36", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 4.651162598330287, + "width": 3, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "8737f63e-9ec9-46b3-acae-88dfc320e74c": { + "id": "8737f63e-9ec9-46b3-acae-88dfc320e74c", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^(\\d*\\.)?\\d+$/.test(components.textinput19.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^(\\d*\\.)?\\d+$/.test(components.textinput19.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter price ($)" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput19", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 11.62790302224886, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "fe446d8e-ea94-43b6-bba2-1aedf9c9390f": { + "id": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffff1a" + }, + "headerTextColor": { + "value": "#213b81ff" + }, + "bodyBackgroundColor": { + "value": "#ffffff1a" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Edit product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "380px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal4", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 53.48837380790299, + "width": 4.999999999999999, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "b318dd60-0908-47d5-a406-be0dea02a7e3": { + "id": "b318dd60-0908-47d5-a406-be0dea02a7e3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text32", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 4.651168424894576, + "width": 3, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "b3882e8e-1ef9-49fa-89a7-ade20b60117e": { + "id": "b3882e8e-1ef9-49fa-89a7-ade20b60117e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput12.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput12.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table2.selectedRow.name}}" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput12", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 11.627907708198, + "width": 36, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "1ab7f02b-0f0c-4e8b-ae92-598914682761": { + "id": "1ab7f02b-0f0c-4e8b-ae92-598914682761", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput20.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput20.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table2.selectedRow.brand}}" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput20", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 60.46510212031943, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "cf9986df-f32b-41af-90e4-0691dea35a1e": { + "id": "cf9986df-f32b-41af-90e4-0691dea35a1e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Brand" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text34", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.162797249108145, + "width": 4, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "2ac19144-0be7-4c06-973d-63333141314a": { + "id": "2ac19144-0be7-4c06-973d-63333141314a", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider8", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 280, + "left": 4.00079841256229e-7, + "width": 43, + "height": 10 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "d44a2f3a-f61f-4489-813a-2d7d84e50b50": { + "id": "d44a2f3a-f61f-4489-813a-2d7d84e50b50", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "38520d62-864b-4489-8e08-796244458fec", + "queryName": "editProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213B81", + "fxActive": true + }, + "disabledState": { + "value": "{{ !components.textinput12.isValid || !components.textinput20.isValid || !components.dropdown5.isValid || !components.textinput22.isValid || !components.textinput21.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Save" + }, + "loadingState": { + "value": "{{queries.editProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button16", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 310, + "left": 83.72093120374878, + "width": 5, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "76d94a84-7977-4efa-9101-8ebb31ba6c5d": { + "id": "76d94a84-7977-4efa-9101-8ebb31ba6c5d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#213b81ff" + }, + "loaderColor": { + "value": "#213b81ff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213b81ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button17", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 310, + "left": 69.76741833633251, + "width": 5, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "e6a96636-5c0b-446f-841c-d1bf158ef5e9": { + "id": "e6a96636-5c0b-446f-841c-d1bf158ef5e9", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text37", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 4.6511560061557224, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "4f2ddbd1-0cff-4935-8c38-974ed434cae7": { + "id": "4f2ddbd1-0cff-4935-8c38-974ed434cae7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text38", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 51.16278773230763, + "width": 4, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "131b8395-3cec-4c0d-bbbe-e374d515e070": { + "id": "131b8395-3cec-4c0d-bbbe-e374d515e070", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Type" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text40", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651158461484289, + "width": 3, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "e85bc7ac-87be-49ce-8260-9e5343d17d6b": { + "id": "e85bc7ac-87be-49ce-8260-9e5343d17d6b", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown5.value != undefined ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown5.value != undefined ? true : \"\"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{components.table2.selectedRow.type}}" + }, + "values": { + "value": "{{[\"appliances\", \"beauty\", \"electronics\", \"kitchen\", \"stationary\"]}}" + }, + "display_values": { + "value": "{{[\"Appliances\", \"Beauty\", \"Electronics\", \"Kitchen\", \"Stationary\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select type of product" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown5", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 11.627898671773568, + "width": 15, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "3bbf57a9-e267-4fd6-803a-74390480638d": { + "id": "3bbf57a9-e267-4fd6-803a-74390480638d", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^\\d+$/.test(components.textinput21.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^\\d+$/.test(components.textinput21.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table2.selectedRow.qty_in_stock}}" + }, + "placeholder": { + "value": "Enter quantity to be added" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput21", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 60.46510923238416, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "88633dc5-2a0d-4e0e-bf4f-a864859a7135": { + "id": "88633dc5-2a0d-4e0e-bf4f-a864859a7135", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text45", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 4.651162598330287, + "width": 3, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "69bf3926-6c1e-4ec5-9c5a-488b0967c7e0": { + "id": "69bf3926-6c1e-4ec5-9c5a-488b0967c7e0", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^(\\d*\\.)?\\d+$/.test(components.textinput22.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^(\\d*\\.)?\\d+$/.test(components.textinput22.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table2.selectedRow.current_price}}" + }, + "placeholder": { + "value": "Enter price ($)" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput22", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 11.627900290084854, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "f5a01d5f-a38c-411e-9ad9-646304b6c29c": { + "id": "f5a01d5f-a38c-411e-9ad9-646304b6c29c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{queries.getCustomerOrders.isLoading}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "" + }, + "loadingState": { + "value": "{{queries.getCustomerOrders.isLoading || queries.customerOrderChart.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text47", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 380, + "left": 88.37209056618315, + "width": 3, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "10d97fa5-70ed-49ea-b755-7e77b676018e": { + "id": "10d97fa5-70ed-49ea-b755-7e77b676018e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{10}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Prod. Id" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text48", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 0.0000028836761174488856, + "width": 5, + "height": 30 + } + }, + "parent": "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59" + }, + "f49067b7-5cb3-4a76-81a5-6a934623c763": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`#${listItem.product_id}`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text49", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "47d3a78b-8435-4a20-a849-3b7c0be713b7", + "layouts": { + "desktop": { + "top": 10, + "left": -3.134246213676306e-7, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "79f5d6a0-d8da-401a-985f-39b3c5fe7ee5": { + "id": "79f5d6a0-d8da-401a-985f-39b3c5fe7ee5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Country" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text59", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 51.162796233025766, + "width": 5, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "bbc5e3e2-1440-49d4-90ca-62168f05a326": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown6.value != undefined ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown6.value != undefined ? true : \"\"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{[\"Argentina\",\"Canada\",\"Colombia\",\"Denmark\",\"France\",\"India\",\"USA\"]}}" + }, + "display_values": { + "value": "{{[\"Argentina\",\"Canada\",\"Colombia\",\"Denmark\",\"France\",\"India\",\"USA\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a country" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown6", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d", + "layouts": { + "desktop": { + "top": 120, + "left": 62.79068508336573, + "width": 14.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "43a8f399-2396-40f3-97a4-f71d993f5f52": { + "id": "43a8f399-2396-40f3-97a4-f71d993f5f52", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown7.value != undefined ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown7.value != undefined ? true : \"\"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{components.table1.selectedRow.country}}" + }, + "values": { + "value": "{{[\"Argentina\",\"Canada\",\"Colombia\",\"Denmark\",\"France\",\"India\",\"USA\"]}}" + }, + "display_values": { + "value": "{{[\"Argentina\",\"Canada\",\"Colombia\",\"Denmark\",\"France\",\"India\",\"USA\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a country" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown7", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 240, + "left": 16.27906996955359, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "ef8a575b-4af5-4441-b2b4-3e019d0605bf": { + "id": "ef8a575b-4af5-4441-b2b4-3e019d0605bf", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Country" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text63", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 240, + "left": 4.651161831394547, + "width": 5, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "f9648d95-7e44-4c04-8251-76ceca06bf40": { + "id": "f9648d95-7e44-4c04-8251-76ceca06bf40", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "10" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "" + }, + "markerColor": { + "value": "#CDE1F8" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getCustomerOrders.isLoading || queries.customerOrderChart.isLoading || queries.customerOrderChartAfterColors.isLoading}}", + "fxActive": true + }, + "jsonDescription": { + "value": "{{queries.getCustomerOrders.isLoading || queries.customerOrderChart.isLoading || queries.customerOrderChartAfterColors.isLoading || queries.getCustomerOrders.data.length == 0 ? \"{}\" : JSON.stringify(queries?.customerOrderChartAfterColors?.data ?? {})}}" + }, + "type": { + "value": "line" + }, + "data": { + "value": "[\n { \"x\": \"Jan\", \"y\": 100},\n { \"x\": \"Feb\", \"y\": 80},\n { \"x\": \"Mar\", \"y\": 40}\n]" + }, + "barmode": { + "value": "group" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart4", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "layouts": { + "desktop": { + "top": 60, + "left": 55.81395348837209, + "width": 17, + "height": 280 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "9fa4e38c-9387-4900-bb70-ff415b46bcdf": { + "id": "9fa4e38c-9387-4900-bb70-ff415b46bcdf", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#213b80ff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 43, + "height": 70 + } + } + }, + "bc1a299e-b62e-4e60-a161-14427d60d051": { + "id": "bc1a299e-b62e-4e60-a161-14427d60d051", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": "{{0}}" + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R A N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text51", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 2.3255827912519793, + "width": 6, + "height": 40 + } + }, + "parent": "9fa4e38c-9387-4900-bb70-ff415b46bcdf" + }, + "43bb2148-1b6a-4763-9919-979202193c52": { + "id": "43bb2148-1b6a-4763-9919-979202193c52", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Sales Analytics" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text64", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 67.44186626637374, + "width": 12, + "height": 40 + } + }, + "parent": "9fa4e38c-9387-4900-bb70-ff415b46bcdf" + }, + "90d2c00b-320e-4aa4-917e-6b7992654326": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcdeff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 60, + "left": 51.16278745544168, + "width": 1, + "height": 280 + } + }, + "withDefaultChildren": false + }, + "274f2ffa-b06c-4b21-80d0-cbd7ad6dece4": { + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.getOrders.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "id": "ecb7323d-bf03-4856-992a-4d12b2711c0e", + "name": "customer_id", + "key": "customer_id", + "columnType": "number", + "autogenerated": true + }, + { + "id": "84563b44-0e3c-4c56-bcad-1392f5c6c1da", + "name": "country", + "key": "country", + "columnType": "string", + "autogenerated": true + }, + { + "id": "556f9785-ae13-4cf5-9252-d34beaed481a", + "name": "product_id", + "key": "product_id", + "columnType": "number", + "autogenerated": true + }, + { + "id": "7eb4e510-53dd-42ec-8261-e188d5b9c3ad", + "name": "product_name", + "key": "product_name", + "columnType": "string", + "autogenerated": true + }, + { + "id": "41f621c1-0982-420c-9d0a-65aef3d583e2", + "name": "quantity", + "key": "quantity", + "columnType": "number", + "autogenerated": true + }, + { + "id": "d8112b51-7942-424f-8940-8e6a1ca0209b", + "name": "at_price", + "key": "at_price", + "columnType": "number", + "autogenerated": true + }, + { + "id": "0a7386fb-a654-43cb-b71c-8c8714eb4ce5", + "name": "total_price", + "key": "total_price", + "columnType": "number", + "autogenerated": true + }, + { + "id": "0936336a-5d6f-4647-aaf4-a4b99c1c4895", + "name": "created_at", + "key": "created_at", + "columnType": "string", + "autogenerated": true + }, + { + "id": "67effed7-a352-4bd2-905f-08aa63bc53a5", + "name": "updated_at", + "key": "updated_at", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 88, + "ecb7323d-bf03-4856-992a-4d12b2711c0e": 135, + "556f9785-ae13-4cf5-9252-d34beaed481a": 143, + "41f621c1-0982-420c-9d0a-65aef3d583e2": 142, + "d8112b51-7942-424f-8940-8e6a1ca0209b": 156, + "0a7386fb-a654-43cb-b71c-8c8714eb4ce5": 162, + "84563b44-0e3c-4c56-bcad-1392f5c6c1da": 167, + "7eb4e510-53dd-42ec-8261-e188d5b9c3ad": 362 + } + }, + "actions": { + "value": [] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": ["is_active"] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table3", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-3", + "layouts": { + "desktop": { + "top": 80, + "left": 2.3255804871948036, + "width": 41, + "height": 490 + } + }, + "withDefaultChildren": false + }, + "248634d0-c840-4b85-8c32-56c87ff8549a": { + "id": "248634d0-c840-4b85-8c32-56c87ff8549a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{ !queries.getOrders.isLoading }}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`${queries?.getOrders?.data?.length ?? 0} Orders`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text65", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 2.3255822593327444, + "width": 14, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-3" + } + }, + "handle": "home", + "name": "Home" + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "5000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": 2400, + "canvasBackgroundColor": "", + "backgroundFxQuery": "" + } + }, + "appId": "7e2569c0-debc-4e6f-80b6-39defd06b40c", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-09-11T18:11:00.826Z", + "updatedAt": "2023-10-10T10:39:44.644Z" + }, + "dataQueries": [ + { + "id": "693b5371-72c6-426d-8253-7cce3b1594ac", + "name": "addProduct", + "options": { + "operation": "create_row", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "sales_analytics_products", + "list_rows": {}, + "create_row": { + "0": { + "column": "name", + "value": "{{components.textinput13.value}}" + }, + "1": { + "column": "type", + "value": "{{components.dropdown4.value}}" + }, + "2": { + "column": "brand", + "value": "{{components.textinput14.value}}" + }, + "3": { + "column": "qty_in_stock", + "value": "{{components.textinput18.value}}" + }, + "4": { + "column": "current_price", + "value": "{{parseFloat(components.textinput19.value).toFixed(2)}}" + }, + "5": { + "column": "created_at", + "value": "{{moment().format()}}" + }, + "6": { + "column": "updated_at", + "value": "{{moment().format()}}" + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Product added successfully", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "c3f01e7f-c9e7-4a96-9ed1-bb623da86a13", + "queryName": "getProducts", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to add product! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "da33a5fe-ada5-4dd1-8218-f3572a33aabe" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T19:29:31.066Z", + "updatedAt": "2023-09-21T07:36:18.021Z" + }, + { + "id": "c3f01e7f-c9e7-4a96-9ed1-bb623da86a13", + "name": "getProducts", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "sales_analytics_products", + "list_rows": { + "order_filters": { + "8": { + "column": "id", + "order": "desc", + "id": "8" + } + }, + "where_filters": { + "9": { + "column": "is_active", + "operator": "eq", + "value": "true", + "id": "9" + } + } + }, + "runOnPageLoad": true, + "table_id": "da33a5fe-ada5-4dd1-8218-f3572a33aabe" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T19:43:00.480Z", + "updatedAt": "2023-09-13T05:11:25.589Z" + }, + { + "id": "38520d62-864b-4489-8e08-796244458fec", + "name": "editProduct", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "sales_analytics_products", + "list_rows": {}, + "update_rows": { + "columns": { + "0": { + "column": "current_price", + "value": "{{parseFloat(components.textinput22.value).toFixed(2)}}" + }, + "1": { + "column": "qty_in_stock", + "value": "{{components.textinput21.value}}" + }, + "14": { + "column": "updated_at", + "value": "{{moment().format()}}" + } + }, + "where_filters": { + "11": { + "column": "id", + "operator": "eq", + "value": "{{components.table2.selectedRow.id}}", + "id": "11" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Product updated successfully", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "c3f01e7f-c9e7-4a96-9ed1-bb623da86a13", + "queryName": "getProducts", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to update product! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "da33a5fe-ada5-4dd1-8218-f3572a33aabe" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T20:00:58.052Z", + "updatedAt": "2023-09-13T05:11:25.600Z" + }, + { + "id": "987f39ac-dd30-4346-b04b-ba92c7b3d288", + "name": "addCustomer", + "options": { + "operation": "create_row", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "sales_analytics_customers", + "list_rows": {}, + "create_row": { + "0": { + "column": "name", + "value": "{{components.textinput11.value}}" + }, + "1": { + "column": "email", + "value": "{{components.textinput15.value}}" + }, + "2": { + "column": "company", + "value": "{{components.textinput16.value}}" + }, + "3": { + "column": "country", + "value": "{{components.dropdown6.value}}" + }, + "4": { + "column": "created_at", + "value": "{{moment().format()}}" + }, + "5": { + "column": "updated_at", + "value": "{{moment().format()}}" + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Customer added successfully", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "61d55ec8-00a1-4111-88fe-0fadd6166e37", + "queryName": "getCustomers", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to add customer! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "cdb1dd71-591f-4e2d-a939-706d3e5e5ea0" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T20:31:07.144Z", + "updatedAt": "2023-09-13T05:11:25.647Z" + }, + { + "id": "61d55ec8-00a1-4111-88fe-0fadd6166e37", + "name": "getCustomers", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "sales_analytics_customers", + "list_rows": { + "where_filters": { + "23": { + "column": "is_active", + "operator": "eq", + "value": "true", + "id": "23" + } + }, + "order_filters": { + "24": { + "column": "id", + "order": "desc", + "id": "24" + } + } + }, + "runOnPageLoad": true, + "table_id": "cdb1dd71-591f-4e2d-a939-706d3e5e5ea0" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T20:32:56.445Z", + "updatedAt": "2023-09-13T05:11:25.606Z" + }, + { + "id": "09bfbae9-3e36-4a93-b8e0-12e46b902229", + "name": "editCustomer", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "sales_analytics_customers", + "list_rows": {}, + "update_rows": { + "columns": { + "0": { + "column": "name", + "value": "{{components.textinput1.value}}" + }, + "1": { + "column": "email", + "value": "{{components.textinput2.value}}" + }, + "2": { + "column": "company", + "value": "{{components.textinput3.value}}" + }, + "29": { + "column": "updated_at", + "value": "{{moment().format()}}" + } + }, + "where_filters": { + "25": { + "column": "id", + "operator": "eq", + "value": "{{components.table1.selectedRow.id}}", + "id": "25" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Customer details updated successfully", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "61d55ec8-00a1-4111-88fe-0fadd6166e37", + "queryName": "getCustomers", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to update customer details! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "cdb1dd71-591f-4e2d-a939-706d3e5e5ea0" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T20:50:25.924Z", + "updatedAt": "2023-09-13T05:11:25.612Z" + }, + { + "id": "a1200d9f-4dab-4b29-bc42-3a455e7f80a0", + "name": "getOrders", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "sales_analytics_orders", + "list_rows": { + "where_filters": { + "30": { + "column": "is_active", + "operator": "eq", + "value": "true", + "id": "30" + } + }, + "order_filters": { + "31": { + "column": "id", + "order": "desc", + "id": "31" + } + } + }, + "runOnPageLoad": true, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "fbea03e7-a606-4848-b22b-9e3cb9506175", + "queryName": "ordersAnalytics", + "parameters": {} + } + ], + "table_id": "a13820a6-bc6a-448c-a348-384adb75c48d" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T21:07:43.749Z", + "updatedAt": "2023-09-13T05:11:25.617Z" + }, + { + "id": "2a7a0455-0855-487d-94d0-3c183747ce2c", + "name": "getCustomerOrders", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": true, + "table_name": "sales_analytics_orders", + "list_rows": { + "where_filters": { + "32": { + "column": "is_active", + "operator": "eq", + "value": "true", + "id": "32" + }, + "33": { + "column": "customer_id", + "operator": "eq", + "value": "{{components.table1.selectedRow.id}}", + "id": "33" + } + }, + "order_filters": { + "34": { + "column": "id", + "order": "desc", + "id": "34" + } + } + }, + "transformation": "res = {};\n\ndata.forEach((order) => {\n if (res.hasOwnProperty(order.product_id)) {\n res[order.product_id].quantity += order.quantity;\n res[order.product_id].total_price += order.total_price;\n } else {\n res[order.product_id] = order;\n }\n});\n\nreturn Object.values(res);", + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "51962548-b0c0-43f6-9ec1-5cd11ccf3f16", + "queryName": "customerChartData", + "parameters": {} + } + ], + "table_id": "a13820a6-bc6a-448c-a348-384adb75c48d" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T21:09:44.161Z", + "updatedAt": "2023-09-13T05:11:25.623Z" + }, + { + "id": "f2b2d1e8-dc3c-433d-9dcc-acf7f7221ca6", + "name": "getProductDetails", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": true, + "table_name": "sales_analytics_products", + "list_rows": { + "where_filters": { + "35": { + "column": "is_active", + "operator": "eq", + "value": "true", + "id": "35" + }, + "36": { + "column": "id", + "operator": "eq", + "value": "{{components?.dropdown2?.value ?? -1}}", + "id": "36" + } + } + }, + "transformation": "return data[0];", + "table_id": "da33a5fe-ada5-4dd1-8218-f3572a33aabe" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T21:19:32.572Z", + "updatedAt": "2023-09-13T05:11:25.629Z" + }, + { + "id": "2d71ac19-5a55-4d3e-ba1f-218e2be5c721", + "name": "addOrder", + "options": { + "operation": "create_row", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "sales_analytics_orders", + "list_rows": {}, + "create_row": { + "0": { + "column": "customer_id", + "value": "{{components.table1.selectedRow.id}}" + }, + "1": { + "column": "product_id", + "value": "{{components.dropdown2.value}}" + }, + "2": { + "column": "product_name", + "value": "{{components.dropdown2.selectedOptionLabel}}" + }, + "3": { + "column": "quantity", + "value": "{{components.dropdown3.value}}" + }, + "4": { + "column": "at_price", + "value": "{{queries.getProductDetails.data.current_price.toFixed(2)}}" + }, + "5": { + "column": "total_price", + "value": "{{components.textinput17.value}}" + }, + "6": { + "column": "country", + "value": "{{components.table1.selectedRow.country}}" + }, + "7": { + "column": "created_at", + "value": "{{moment().format()}}" + }, + "8": { + "column": "updated_at", + "value": "{{moment().format()}}" + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Order added successfully", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "selectOption", + "componentId": "54cc01e3-231b-42ef-9fb9-d97ad100c25e", + "componentSpecificActionParams": [ + { + "handle": "select", + "displayName": "Select", + "value": "{{undefined}}" + } + ] + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "selectOption", + "componentId": "47bcf998-1d86-4c9d-9fde-9c738903bad2", + "componentSpecificActionParams": [ + { + "handle": "select", + "displayName": "Select", + "value": "{{undefined}}" + } + ] + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "2a7a0455-0855-487d-94d0-3c183747ce2c", + "queryName": "getCustomerOrders", + "parameters": {} + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "c3f01e7f-c9e7-4a96-9ed1-bb623da86a13", + "queryName": "getProducts", + "parameters": {} + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "a1200d9f-4dab-4b29-bc42-3a455e7f80a0", + "queryName": "getOrders", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to add order! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "a13820a6-bc6a-448c-a348-384adb75c48d" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T21:37:14.100Z", + "updatedAt": "2023-09-13T05:11:25.653Z" + }, + { + "id": "3968fbc6-634d-4a0d-80ea-8656c5ebab35", + "name": "reduceProductQuantity", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "sales_analytics_products", + "list_rows": {}, + "update_rows": { + "columns": { + "47": { + "column": "qty_in_stock", + "value": "{{(queries?.getProductDetails?.data?.qty_in_stock ?? 0) - (components?.dropdown3?.value ?? 0)}}" + } + }, + "where_filters": { + "45": { + "column": "id", + "operator": "eq", + "value": "{{components.dropdown2.value}}", + "id": "45" + }, + "46": { + "column": "is_active", + "operator": "eq", + "value": "true", + "id": "46" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "2d71ac19-5a55-4d3e-ba1f-218e2be5c721", + "queryName": "addOrder", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to reduce product quantity! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "da33a5fe-ada5-4dd1-8218-f3572a33aabe" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T22:00:37.518Z", + "updatedAt": "2023-09-13T05:11:25.635Z" + }, + { + "id": "369acf3e-3774-4aa3-9afe-916f32b66713", + "name": "checkProductQuantity", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": true, + "table_name": "sales_analytics_products", + "list_rows": { + "where_filters": { + "1": { + "column": "id", + "operator": "eq", + "value": "{{components.dropdown2.value}}", + "id": "1" + }, + "2": { + "column": "is_active", + "operator": "eq", + "value": "true", + "id": "2" + } + } + }, + "transformation": "return data[0];", + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "3968fbc6-634d-4a0d-80ea-8656c5ebab35", + "queryName": "reduceProductQuantity", + "parameters": {}, + "runOnlyIf": "{{(queries?.checkProductQuantity?.data?.qty_in_stock ?? 0) >= (components?.dropdown3?.value ?? 0)}}" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Product quantity available is insufficient! Please check and try again.", + "alertType": "warning", + "runOnlyIf": "{{(queries?.checkProductQuantity?.data?.qty_in_stock ?? 0) < (components?.dropdown3?.value ?? 0)}}" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "runOnlyIf": "{{(queries?.checkProductQuantity?.data?.qty_in_stock ?? 0) < (components?.dropdown3?.value ?? 0)}}", + "queryId": "f2b2d1e8-dc3c-433d-9dcc-acf7f7221ca6", + "queryName": "getProductDetails", + "parameters": {} + } + ], + "table_id": "da33a5fe-ada5-4dd1-8218-f3572a33aabe" + }, + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-11T22:21:52.289Z", + "updatedAt": "2023-09-13T05:11:25.641Z" + }, + { + "id": "51962548-b0c0-43f6-9ec1-5cd11ccf3f16", + "name": "customerOrderChart", + "options": { + "code": "data = queries.getCustomerOrders.data;\n\nformat = {\n data: [\n {\n type: \"pie\",\n labels: [],\n values: [],\n textinfo: \"label+percent\",\n textposition: \"inside\",\n textfont: {\n color: \"#ffffff\",\n size: 14,\n },\n marker: {\n colors: [],\n },\n },\n ],\n layout: {\n title: \"\",\n showlegend: false,\n height: 500,\n width: 700,\n margin: {\n l: 50,\n r: 50,\n t: 50,\n b: 50,\n },\n },\n};\n\ndata.forEach((order) => {\n format.data[0].labels.push(`Prod. #${order.product_id}`);\n format.data[0].values.push(parseFloat(order.total_price.toFixed(2)));\n});\n\nreturn format;", + "hasParamSupport": true, + "parameters": [], + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "d88371b6-287d-4786-9a4c-4421b5f7467e", + "queryName": "customerOrderChartAfterColors", + "parameters": {} + } + ] + }, + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-12T05:56:06.910Z", + "updatedAt": "2023-09-12T20:23:08.099Z" + }, + { + "id": "fbea03e7-a606-4848-b22b-9e3cb9506175", + "name": "ordersAnalytics", + "options": { + "code": "data = queries.getOrders.data;\n\nmonths = moment.monthsShort();\n\ndataPerMonth = months\n .map((month) => ({\n [month]: {\n monthName: month,\n qtySold: 0,\n revenue: 0,\n avgOrderValue: 0,\n customerIds: new Set(),\n },\n }))\n .reduce((a, b) => ({ ...a, ...b }));\n\ndataPerCountry = {};\n\ndata.forEach((order) => {\n if (moment(order.created_at).format(\"YYYY\") == moment().format(\"YYYY\")) {\n mmm = moment(order.created_at).format(\"MMM\");\n dataPerMonth[mmm].qtySold += order.quantity;\n dataPerMonth[mmm].revenue = parseFloat(\n (dataPerMonth[mmm].revenue + order.total_price).toFixed(2)\n );\n dataPerMonth[mmm].avgOrderValue = parseFloat(\n (dataPerMonth[mmm].revenue / dataPerMonth[mmm].qtySold).toFixed(2)\n );\n dataPerMonth[mmm].customerIds.add(order.customer_id);\n if (dataPerCountry.hasOwnProperty(order.country)) {\n dataPerCountry[order.country].revenue = parseFloat(\n (dataPerCountry[order.country].revenue + order.total_price).toFixed(2)\n );\n dataPerCountry[order.country].qtySold += order.quantity;\n } else {\n dataPerCountry[order.country] = {\n countryName: order.country,\n revenue: parseFloat(order.total_price.toFixed(2)),\n qtySold: order.quantity,\n };\n }\n }\n});\n\ndataPerCountry = Object.values(dataPerCountry);\n\nformat = {\n data: [\n {\n type: \"pie\",\n labels: dataPerCountry.map((country) => country.countryName),\n values: dataPerCountry.map((country) =>\n parseFloat(country.revenue.toFixed(2))\n ),\n textinfo: \"label+percent\",\n textposition: \"inside\",\n textfont: {\n color: \"#ffffff\",\n size: 14,\n },\n marker: {\n colors: [],\n },\n },\n ],\n layout: {\n title: \"Sales per country this year\",\n showlegend: false,\n height: 500,\n width: 700,\n margin: {\n l: 50,\n r: 50,\n t: 50,\n b: 50,\n },\n },\n};\n\nreturn { dataPerMonth: dataPerMonth, chartData: format };", + "hasParamSupport": true, + "parameters": [], + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "3d1d20c6-570c-484d-abbc-a710a70bf80f", + "queryName": "ordersAnalyticsAfterColors", + "parameters": {} + } + ] + }, + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-12T10:38:26.295Z", + "updatedAt": "2023-09-12T20:04:39.145Z" + }, + { + "id": "3d1d20c6-570c-484d-abbc-a710a70bf80f", + "name": "ordersAnalyticsAfterColors", + "options": { + "code": "function generateShadesOfColor(baseColor, numShades) {\n const match = baseColor.match(/^#?([a-f\\d]{2})([a-f\\d]{2})([a-f\\d]{2})$/i);\n if (!match) {\n throw new Error(\n \"Invalid color format. Please use hexadecimal color notation.\"\n );\n }\n\n const [, r, g, b] = match.map((hex) => parseInt(hex, 16));\n\n const shades = [];\n for (let i = 0; i < numShades; i++) {\n const newR = Math.floor(r * (1 - i / numShades));\n const newG = Math.floor(g * (1 - i / numShades));\n const newB = Math.floor(b * (1 - i / numShades));\n\n const shade = `#${newR.toString(16).padStart(2, \"0\")}${newG\n .toString(16)\n .padStart(2, \"0\")}${newB.toString(16).padStart(2, \"0\")}`;\n shades.push(shade);\n }\n\n return shades;\n}\n\ndata = queries.ordersAnalytics.data.chartData;\nconst baseColor = \"#2f54b7\";\nconst numShades = data.data[0].values.length;\nconst shades = generateShadesOfColor(baseColor, numShades);\ndata.data[0].marker.colors = shades;\nreturn data;", + "hasParamSupport": true, + "parameters": [] + }, + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-12T19:52:39.847Z", + "updatedAt": "2023-09-12T20:17:51.612Z" + }, + { + "id": "d88371b6-287d-4786-9a4c-4421b5f7467e", + "name": "customerOrderChartAfterColors", + "options": { + "code": "function generateShadesOfColor(baseColor, numShades) {\n const match = baseColor.match(/^#?([a-f\\d]{2})([a-f\\d]{2})([a-f\\d]{2})$/i);\n if (!match) {\n throw new Error(\n \"Invalid color format. Please use hexadecimal color notation.\"\n );\n }\n\n const [, r, g, b] = match.map((hex) => parseInt(hex, 16));\n\n const shades = [];\n for (let i = 0; i < numShades; i++) {\n const newR = Math.floor(r * (1 - i / numShades));\n const newG = Math.floor(g * (1 - i / numShades));\n const newB = Math.floor(b * (1 - i / numShades));\n\n const shade = `#${newR.toString(16).padStart(2, \"0\")}${newG\n .toString(16)\n .padStart(2, \"0\")}${newB.toString(16).padStart(2, \"0\")}`;\n shades.push(shade);\n }\n\n return shades;\n}\n\ndata = queries.customerOrderChart.data;\nconst baseColor = \"#2f54b7\";\nconst numShades = data.data[0].values.length;\nconst shades = generateShadesOfColor(baseColor, numShades);\ndata.data[0].marker.colors = shades;\nreturn data;", + "hasParamSupport": true, + "parameters": [] + }, + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "createdAt": "2023-09-12T20:14:10.117Z", + "updatedAt": "2023-09-12T20:16:46.120Z" + } + ], + "dataSources": [ + { + "id": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "name": "restapidefault", + "kind": "restapi", + "type": "static", + "pluginId": null, + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-11T18:11:00.808Z", + "updatedAt": "2023-09-11T18:11:00.808Z" + }, + { + "id": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "name": "runjsdefault", + "kind": "runjs", + "type": "static", + "pluginId": null, + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-11T18:11:00.808Z", + "updatedAt": "2023-09-11T18:11:00.808Z" + }, + { + "id": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "name": "tooljetdbdefault", + "kind": "tooljetdb", + "type": "static", + "pluginId": null, + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-11T18:11:00.808Z", + "updatedAt": "2023-09-11T18:11:00.808Z" + }, + { + "id": "bbf96279-8c73-4ea3-9311-df4734dda542", + "name": "workflowsdefault", + "kind": "workflows", + "type": "static", + "pluginId": null, + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-11T18:11:00.808Z", + "updatedAt": "2023-09-11T18:11:00.808Z" + }, + { + "id": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "name": "runpydefault", + "kind": "runpy", + "type": "static", + "pluginId": null, + "appVersionId": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "organizationId": null, + "scope": "local", + "createdAt": "2023-09-11T18:11:00.808Z", + "updatedAt": "2023-09-11T18:11:00.808Z" + } + ], + "appVersions": [ + { + "id": "1a949ed8-f29d-44db-9b12-f87cbefa33df", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "cbd7f186-e2c5-4443-97c6-ccb0e7f37f38", + "pages": { + "cbd7f186-e2c5-4443-97c6-ccb0e7f37f38": { + "components": { + "5e82a221-8213-4caf-817c-88f97d8e4883": { + "component": { + "properties": { + "tabs": { + "type": "code", + "displayName": "Tabs", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "id": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + } + } + }, + "defaultTab": { + "type": "code", + "displayName": "Default tab", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "hideTabs": { + "type": "toggle", + "displayName": "Hide Tabs", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "renderOnlyActiveTab": { + "type": "toggle", + "displayName": "Render only active tab", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onTabSwitch": { + "displayName": "On tab switch" + } + }, + "styles": { + "highlightColor": { + "type": "color", + "displayName": "Highlight Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "tabWidth": { + "type": "select", + "displayName": "Tab width", + "options": [ + { + "name": "Auto", + "value": "auto" + }, + { + "name": "Equally split", + "value": "split" + } + ] + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "highlightColor": { + "value": "#4f81ffff", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "tabWidth": { + "value": "auto" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "tabs": { + "value": "{{[\n { title: \"Overview\", id: \"0\" },\n { title: \"Orders\", id: \"3\" },\n { title: \"Customers\", id: \"1\" },\n { title: \"Products\", id: \"2\" },\n]}}" + }, + "defaultTab": { + "value": "0" + }, + "hideTabs": { + "value": false + }, + "renderOnlyActiveTab": { + "value": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "tabs1", + "displayName": "Tabs", + "description": "Tabs component", + "defaultSize": { + "width": 30, + "height": 300 + }, + "defaultChildren": [ + { + "componentName": "Image", + "layout": { + "top": 60, + "left": 37, + "height": 100 + }, + "tab": 0, + "properties": ["source"], + "defaultValue": { + "source": "https://uploads-ssl.webflow.com/6266634263b9179f76b2236e/62666392f32677b5cb2fb84b_logo.svg" + } + }, + { + "componentName": "Text", + "layout": { + "top": 100, + "left": 17, + "height": 50, + "width": 34 + }, + "tab": 1, + "properties": ["text"], + "defaultValue": { + "text": "Open-source low-code framework to build & deploy internal tools within minutes." + } + }, + { + "componentName": "Table", + "layout": { + "top": 0, + "left": 1, + "width": 42, + "height": 250 + }, + "tab": 2 + } + ], + "component": "Tabs", + "actions": [ + { + "handle": "setTab", + "displayName": "Set current tab", + "params": [ + { + "handle": "id", + "displayName": "Id" + } + ] + } + ], + "exposedVariables": { + "currentTab": "" + } + }, + "layouts": { + "desktop": { + "top": 70, + "left": 0, + "width": 43, + "height": 640 + } + }, + "withDefaultChildren": false + }, + "64c60f67-ae5f-4fec-a74e-9b62100503be": { + "id": "64c60f67-ae5f-4fec-a74e-9b62100503be", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getCustomers.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.getCustomers.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "name": "name", + "id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a", + "autogenerated": true + }, + { + "name": "email", + "id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f", + "autogenerated": true + }, + { + "name": "company", + "id": "e9460e25-9cff-4961-8ac9-39516d7a5981" + }, + { + "id": "d3be2482-e0ca-4347-bd71-2c3241631952", + "name": "country", + "key": "country", + "columnType": "string", + "autogenerated": true + }, + { + "name": "created_at", + "id": "3d5ce08d-82a5-44b7-939c-126dafffb4a0" + }, + { + "name": "updated_at", + "id": "7fe6cdb6-cd92-4bb7-bdb3-fd0aebe3f003" + } + ] + }, + "showBulkUpdateActions": { + "value": "{{true}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 241, + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 102, + "rightActions": 72, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 207, + "leftActions": 104, + "e9460e25-9cff-4961-8ac9-39516d7a5981": 160, + "d1d6d6f1-3f08-465b-8080-829a460d0b78": 242, + "7278dc62-35af-4b8c-b8ef-ae11897de851": 104, + "d3be2482-e0ca-4347-bd71-2c3241631952": 174 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "View details", + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "2a7a0455-0855-487d-94d0-3c183747ce2c", + "queryName": "getCustomerOrders", + "parameters": {} + } + ], + "position": "left", + "disableActionButton": "{{false}}", + "textColor": "#213b81ff", + "backgroundColor": "#f0f6ffff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "order date", + "product", + "quantity", + "is_active" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80.00003051757812, + "left": 2.325580249259922, + "width": 41, + "height": 490 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-1" + }, + "9196a79f-d2d0-4945-a18c-461621110d6d": { + "id": "9196a79f-d2d0-4945-a18c-461621110d6d", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .avgOrderValue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) *\n 100\n) > 0\n ? \"#36AF8B\"\n : \"#EE2C4D\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Average Order Value ($)" + }, + "primaryValue": { + "value": "{{queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].avgOrderValue}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{`${(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .avgOrderValue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) *\n 100\n).toFixed(2)}%`}}" + }, + "secondarySignDisplay": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .avgOrderValue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].avgOrderValue) *\n 100\n) > 0\n ? \"positive\"\n : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics1", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 30, + "left": 74.41860383993948, + "width": 9.999999999999998, + "height": 170 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "866b47b2-bf23-4ef8-bf0b-26fa857ed807": { + "id": "866b47b2-bf23-4ef8-bf0b-26fa857ed807", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .customerIds.size -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) *\n 100\n) > 0\n ? \"#36AF8B\"\n : \"#EE2C4D\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Total customers" + }, + "primaryValue": { + "value": "{{queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].customerIds.size}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{`${(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .customerIds.size -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) *\n 100\n).toFixed(2)}%`}}" + }, + "secondarySignDisplay": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")]\n .customerIds.size -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().subtract(1, \"month\").format(\"MMM\")\n ].customerIds.size) *\n 100\n) > 0\n ? \"positive\"\n : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics2", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 30, + "left": 2.3255812455980243, + "width": 9, + "height": 170 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "3168ef8d-15d1-44c5-827a-cf183d11cf98": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{ !queries.getCustomers.isLoading }}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`${queries?.getCustomers?.data?.length ?? 0} Customers`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text2", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-1", + "layouts": { + "desktop": { + "top": 20, + "left": 2.325595995777369, + "width": 14, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "a291e07a-cb22-4f02-b05d-40707ee14e2c": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#213b81ff" + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#4D72FA" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Customer" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Launch Modal" + }, + "size": { + "value": "xl" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "920px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal2", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 750.000057220459, + "left": 2.3256077478684265, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "6611ee93-dfd1-42c6-b002-439bb005eca2": { + "id": "6611ee93-dfd1-42c6-b002-439bb005eca2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text4", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 4.6511635881258995, + "width": 5, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "af78e81a-11f3-472a-b66b-73327dde099d": { + "id": "af78e81a-11f3-472a-b66b-73327dde099d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 4.651161793912395, + "width": 5, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "bd544998-d2ae-4ad2-af4f-f0683eea8e1b": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput1.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{6}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput1.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.name}}" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 60, + "left": 16.279067969008917, + "width": 14, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "98b9b1cc-fe4f-4db7-b534-b22ad4c4eadd": { + "id": "98b9b1cc-fe4f-4db7-b534-b22ad4c4eadd", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput2.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{6}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput2.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.email}}" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 16.279068577527127, + "width": 14, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "9deaf722-d8f3-4d64-afab-a3c25782a26e": { + "id": "9deaf722-d8f3-4d64-afab-a3c25782a26e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput3.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{6}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput3.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table1.selectedRow.company}}" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput3", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 16.27906704285889, + "width": 14, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "36bec844-5b66-478c-814d-257a91e59b80": { + "id": "36bec844-5b66-478c-814d-257a91e59b80", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Company" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 4.6511635881258995, + "width": 5, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "c52fa65e-c16c-4315-a0e1-dd7c80839b9d": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 830, + "left": 3.134246213676306e-7, + "width": 43, + "height": 10 + } + }, + "withDefaultChildren": false + }, + "8afb3d48-36eb-449c-8d2f-a17c36941493": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "369acf3e-3774-4aa3-9afe-916f32b66713", + "queryName": "checkProductQuantity", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": false + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213B81", + "fxActive": true + }, + "disabledState": { + "value": "{{components.dropdown2.value == undefined || components.dropdown3.value == undefined}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Order" + }, + "loadingState": { + "value": "{{queries.checkProductQuantity.isLoading || queries.reduceProductQuantity.isLoading || queries.addOrder.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 860, + "left": 83.72093023255815, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "8d1bc6ea-d601-48f5-99b7-80fd0ab607e1": { + "id": "8d1bc6ea-d601-48f5-99b7-80fd0ab607e1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffff80" + }, + "textColor": { + "value": "#213b81ff" + }, + "loaderColor": { + "value": "#213b81ff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213b81ff" + }, + "disabledState": { + "value": "{{false}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 860, + "left": 72.09302215268106, + "width": 4, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "d4e9af65-5062-458c-b2f4-f0b6afdea142": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff00", + "fxActive": false + }, + "textColor": { + "value": "#213B81", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Customer Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 10, + "left": 4.651166276216096, + "width": 14, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "a72bb1eb-afe6-463f-9b80-077ed0d7f748": { + "id": "a72bb1eb-afe6-463f-9b80-077ed0d7f748", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 380, + "left": 4.651201625160855, + "width": 14, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "18505c13-2546-4f7e-89f2-59768b29ce57": { + "id": "18505c13-2546-4f7e-89f2-59768b29ce57", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{ !queries.getProducts.isLoading }}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`${queries?.getProducts?.data?.length ?? 0} Products`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 2.3255869327817056, + "width": 14, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "724ff2bb-3b5c-448e-944d-e176705b34db": { + "id": "724ff2bb-3b5c-448e-944d-e176705b34db", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getProducts.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.getProducts.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "id": "6ff6f2d1-ae39-4f01-9f02-001a75567deb", + "name": "name", + "key": "name", + "columnType": "string", + "autogenerated": true + }, + { + "name": "type", + "id": "e9460e25-9cff-4961-8ac9-39516d7a5981", + "columnType": "default" + }, + { + "name": "brand", + "id": "d1d6d6f1-3f08-465b-8080-829a460d0b78", + "columnType": "default" + }, + { + "name": "qty_in_stock", + "id": "7278dc62-35af-4b8c-b8ef-ae11897de851" + }, + { + "id": "d9d4cf35-b1d4-4179-b16e-b6688c69eb3a", + "name": "current_price", + "key": "current_price", + "columnType": "number", + "autogenerated": true + }, + { + "id": "4b3fb0f6-a827-465e-bdf5-7b607d27507b", + "name": "created_at", + "key": "created_at", + "columnType": "string", + "autogenerated": true + }, + { + "id": "7b0c396a-aaee-4485-aebc-c8281b19f3bf", + "name": "updated_at", + "key": "updated_at", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{true}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 65, + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 102, + "rightActions": 72, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 140, + "leftActions": 72, + "e9460e25-9cff-4961-8ac9-39516d7a5981": 183, + "d1d6d6f1-3f08-465b-8080-829a460d0b78": 160, + "7278dc62-35af-4b8c-b8ef-ae11897de851": 175, + "6ff6f2d1-ae39-4f01-9f02-001a75567deb": 247, + "d9d4cf35-b1d4-4179-b16e-b6688c69eb3a": 178 + } + }, + "actions": { + "value": [ + { + "name": "Action0", + "buttonText": "Edit", + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + } + ], + "position": "left", + "disableActionButton": "{{false}}", + "backgroundColor": "#f0f6ffff", + "textColor": "#213b81ff" + } + ] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "order date", + "Qty sold", + "email", + "is_active" + ] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table2", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 2.3255813953488373, + "width": 41, + "height": 490 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1": { + "id": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffff1a" + }, + "headerTextColor": { + "value": "#213b81ff" + }, + "bodyBackgroundColor": { + "value": "#ffffff1a" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "380px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal6", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 67.44186080042796, + "width": 4.999999999999999, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "d6887251-aeec-4c61-9ed5-7857a629f548": { + "id": "d6887251-aeec-4c61-9ed5-7857a629f548", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 4.651168424894576, + "width": 3, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "429efd49-6f00-4425-a9c3-85999698c138": { + "id": "429efd49-6f00-4425-a9c3-85999698c138", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput13.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput13.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput13", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 11.62790689160906, + "width": 36, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "52e43826-1aa0-49b4-a4d3-a135f884fa70": { + "id": "52e43826-1aa0-49b4-a4d3-a135f884fa70", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput14.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput14.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput14", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 60.46510288959324, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "a89caaeb-b9f0-4a38-adde-f77707b64939": { + "id": "a89caaeb-b9f0-4a38-adde-f77707b64939", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Brand" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.16279745082527, + "width": 4, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "16a11718-2e5f-4fb8-a89a-5e1636c83c7f": { + "id": "16a11718-2e5f-4fb8-a89a-5e1636c83c7f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider5", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 280, + "left": 4.00079841256229e-7, + "width": 43, + "height": 10 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "0a12ce5c-5511-4027-9764-054b6752659b": { + "id": "0a12ce5c-5511-4027-9764-054b6752659b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "693b5371-72c6-426d-8253-7cce3b1594ac", + "queryName": "addProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213B81", + "fxActive": true + }, + "disabledState": { + "value": "{{ !components.textinput13.isValid || !components.textinput14.isValid || !components.dropdown4.isValid || !components.textinput18.isValid || !components.textinput19.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Product" + }, + "loadingState": { + "value": "{{queries.addProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button9", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 310, + "left": 76.74419092490663, + "width": 8, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "7ca82553-80e7-421b-b278-5a00d0250b89": { + "id": "7ca82553-80e7-421b-b278-5a00d0250b89", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#213b81ff" + }, + "loaderColor": { + "value": "#213b81ff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213b81ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button10", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 310, + "left": 62.79068219897656, + "width": 5, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "c511607b-5a00-418c-b814-5b9ccf8fa4bf": { + "id": "c511607b-5a00-418c-b814-5b9ccf8fa4bf", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text33", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 4.6511560061557224, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "89304548-d603-41fb-8696-c77096ff17d6": { + "id": "89304548-d603-41fb-8696-c77096ff17d6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text35", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 51.16278773230763, + "width": 4, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "0110ef71-686f-4c85-a85b-4d47a80111b8": { + "id": "0110ef71-686f-4c85-a85b-4d47a80111b8", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "50" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Sales per country this year" + }, + "markerColor": { + "value": "#CDE1F8" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading || queries.ordersAnalyticsAfterColors.isLoading}}", + "fxActive": true + }, + "jsonDescription": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading || queries.ordersAnalyticsAfterColors.isLoading || queries.getOrders.data.length == 0 ? \"{}\" : JSON.stringify(queries?.ordersAnalyticsAfterColors?.data ?? {})}}" + }, + "type": { + "value": "line" + }, + "data": { + "value": "[\n { \"x\": \"Jan\", \"y\": 100},\n { \"x\": \"Feb\", \"y\": 80},\n { \"x\": \"Mar\", \"y\": 40}\n]" + }, + "barmode": { + "value": "group" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart3", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "layouts": { + "desktop": { + "top": 230, + "left": 58.13953624532072, + "width": 17, + "height": 330 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "e5d754ff-eb1f-4d1d-945b-65843b32408e": { + "id": "e5d754ff-eb1f-4d1d-945b-65843b32408e", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].revenue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) *\n 100\n) > 0\n ? \"#36AF8B\"\n : \"#EE2C4D\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Revenue ($)" + }, + "primaryValue": { + "value": "{{queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].revenue}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{`${(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].revenue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) *\n 100\n).toFixed(2)}%`}}" + }, + "secondarySignDisplay": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].revenue -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].revenue) *\n 100\n) > 0\n ? \"positive\"\n : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics4", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 30, + "left": 48.83721329386816, + "width": 9.999999999999998, + "height": 170 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "b91a9efc-f701-4305-be8c-4001a7a80400": { + "id": "b91a9efc-f701-4305-be8c-4001a7a80400", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].qtySold -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) *\n 100\n) > 0\n ? \"#36AF8B\"\n : \"#EE2C4D\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Qty. Sold" + }, + "primaryValue": { + "value": "{{queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].qtySold}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{`${(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].qtySold -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) *\n 100\n).toFixed(2)}%`}}" + }, + "secondarySignDisplay": { + "value": "{{(\n ((queries.ordersAnalytics.data.dataPerMonth[moment().format(\"MMM\")].qtySold -\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) /\n queries.ordersAnalytics.data.dataPerMonth[\n moment().add(-1, \"month\").format(\"MMM\")\n ].qtySold) *\n 100\n) > 0\n ? \"positive\"\n : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics6", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 30, + "left": 25.58139219926747, + "width": 9, + "height": 170 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "f3c8c84e-18b9-4432-aec0-bd92b10d2692": { + "id": "f3c8c84e-18b9-4432-aec0-bd92b10d2692", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "barmode": { + "type": "select", + "displayName": "Bar mode", + "options": [ + { + "name": "Stack", + "value": "stack" + }, + { + "name": "Group", + "value": "group" + }, + { + "name": "Overlay", + "value": "overlay" + }, + { + "name": "Relative", + "value": "relative" + } + ], + "validation": { + "schema": { + "schemas": { + "type": "string" + } + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "50" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Total sales this year" + }, + "markerColor": { + "value": "#5e82e0ff" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{false}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading || queries.ordersAnalytics.isLoading}}", + "fxActive": true + }, + "barmode": { + "value": "group" + }, + "jsonDescription": { + "value": "{\n \"data\": [\n {\n \"x\": [\n \"Jan\",\n \"Feb\",\n \"Mar\",\n \"Jun\",\n \"Jul\",\n \"Aug\",\n \"Sep\",\n \"Oct\",\n \"Nov\",\n \"Dec\"\n \n ],\n \"y\": [\n 100,\n 80,\n 40,\n 60,\n 60,\n 25,\n 0,\n 0,\n 0,\n 0\n ],\n \"type\": \"bar\"\n }\n ]\n }" + }, + "type": { + "value": "bar" + }, + "data": { + "value": "{{Object.values(queries?.ordersAnalytics?.data?.dataPerMonth ?? {}).map(\n (month) => ({\n x: month.monthName,\n y: month.revenue,\n })\n)}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart6", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "layouts": { + "desktop": { + "top": 230, + "left": 2.3255813953488373, + "width": 23, + "height": 330 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-0" + }, + "08300762-0eba-4b4d-af8f-2a7fb75fea38": { + "id": "08300762-0eba-4b4d-af8f-2a7fb75fea38", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#ffffff00" + }, + "textColor": { + "value": "#213B81", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Orders summary by cost" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text39", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 55.8139500865679, + "width": 14, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "c01bbbf2-ec98-4ae5-a8c9-448266a6289d": { + "id": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#213b81ff" + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#213B81", + "fxActive": false + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add customer" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add customer" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "280px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal7", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 69.76743908216835, + "width": 4.999999999999999, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-1" + }, + "a2b173a3-7b02-4bf7-b423-99b36ae96fcb": { + "id": "a2b173a3-7b02-4bf7-b423-99b36ae96fcb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Email" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text42", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 4.651164026267174, + "width": 4, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "46db1ccd-6b3d-4e4f-91e2-f2c9349d04a5": { + "id": "46db1ccd-6b3d-4e4f-91e2-f2c9349d04a5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text43", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 4.651162963972348, + "width": 4, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "b86629b8-e27a-41fb-abe0-7f2541815262": { + "id": "b86629b8-e27a-41fb-abe0-7f2541815262", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput11.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput11.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput11", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60.00001525878906, + "left": 13.953475264081066, + "width": 14, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "ac45c5f5-ed9e-40aa-8711-aa1cd3e71c65": { + "id": "ac45c5f5-ed9e-40aa-8711-aa1cd3e71c65", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput15.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/.test(components.textinput15.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter email" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput15", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120.00001525878906, + "left": 13.953482739224162, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "75b94950-b063-48ec-904d-0bc5174a915f": { + "id": "75b94950-b063-48ec-904d-0bc5174a915f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput16.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput16.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput16", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 62.7907019101015, + "width": 14, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "61447808-eac6-4bc1-90fc-69a4973684a7": { + "id": "61447808-eac6-4bc1-90fc-69a4973684a7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Company" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text44", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 51.16279499745627, + "width": 5, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "5c75dd41-5123-461a-bc60-22d28ff85c61": { + "id": "5c75dd41-5123-461a-bc60-22d28ff85c61", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider7", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 190, + "left": 0, + "width": 43, + "height": 10 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "81e083a2-5d63-4a6c-af1d-18cb9719bd9e": { + "id": "81e083a2-5d63-4a6c-af1d-18cb9719bd9e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "987f39ac-dd30-4346-b04b-ba92c7b3d288", + "queryName": "addCustomer", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "disabledState": { + "value": "{{ !components.textinput11.isValid || !components.textinput15.isValid || !components.textinput16.isValid || !components.dropdown6.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add customer" + }, + "loadingState": { + "value": "{{queries.addCustomer.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button12", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 76.74418426940643, + "width": 8, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "caec1f77-e911-4dda-ae20-25a2c1c1200b": { + "id": "caec1f77-e911-4dda-ae20-25a2c1c1200b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#213b81ff" + }, + "loaderColor": { + "value": "#213b81ff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#213b81ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button13", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 62.79071384658206, + "width": 5, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "4d57de11-54bb-437f-9f4e-47620be2292c": { + "id": "4d57de11-54bb-437f-9f4e-47620be2292c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Customer Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text46", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 4.651154551901468, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "d7053db4-ae15-46a2-aeb5-02daefc2735f": { + "id": "d7053db4-ae15-46a2-aeb5-02daefc2735f", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Type" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text50", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651159034566407, + "width": 3, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "31d79ec2-793a-4140-8cf0-1820ab353db2": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + } + ], + "styles": { + "backgroundColor": { + "value": "#213b81ff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Customer" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button15", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-1", + "layouts": { + "desktop": { + "top": 20, + "left": 83.72092413686282, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "47d3a78b-8435-4a20-a849-3b7c0be713b7": { + "component": { + "properties": { + "data": { + "type": "code", + "displayName": "List data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + } + } + } + }, + "mode": { + "type": "select", + "displayName": "Mode", + "options": [ + { + "name": "list", + "value": "list" + }, + { + "name": "grid", + "value": "grid" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "columns": { + "type": "number", + "displayName": "Columns", + "validation": { + "schema": { + "type": "number" + } + }, + "conditionallyRender": { + "key": "mode", + "value": "grid" + } + }, + "rowHeight": { + "type": "code", + "displayName": "Row height", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "showBorder": { + "type": "code", + "displayName": "Show bottom border", + "validation": { + "schema": { + "type": "boolean" + } + }, + "conditionallyRender": { + "key": "mode", + "value": "list" + } + }, + "enablePagination": { + "type": "toggle", + "displayName": "Enable pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "rowsPerPage": { + "type": "code", + "displayName": "Rows per page", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowClicked": { + "displayName": "Row clicked (Deprecated)" + }, + "onRecordClicked": { + "displayName": "Record clicked" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888880d" + }, + "borderColor": { + "value": "#dadcde" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{10}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "data": { + "value": "{{queries.getCustomerOrders.data}}" + }, + "mode": { + "value": "list" + }, + "columns": { + "value": "{{3}}" + }, + "rowHeight": { + "value": "60" + }, + "visible": { + "value": "{{true}}" + }, + "showBorder": { + "value": "{{true}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "enablePagination": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "listview1", + "displayName": "List View", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 20, + "height": 300 + }, + "defaultChildren": [ + { + "componentName": "Image", + "layout": { + "top": 15, + "left": 6.976744186046512, + "height": 100 + }, + "properties": ["source"], + "accessorKey": "imageURL" + }, + { + "componentName": "Text", + "layout": { + "top": 50, + "left": 27, + "height": 30 + }, + "properties": ["text"], + "accessorKey": "text" + }, + { + "componentName": "Button", + "layout": { + "top": 50, + "left": 60, + "height": 30 + }, + "incrementWidth": 2, + "properties": ["text"], + "accessorKey": "buttonText" + } + ], + "component": "Listview", + "exposedVariables": { + "data": [{}] + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 469.99999237060547, + "left": 4.651161008130597, + "width": 39.00000000000001, + "height": 180 + } + }, + "withDefaultChildren": false + }, + "2befd867-7265-4237-a299-6f5be30c7fea": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{listItem.product_name}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text52", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "47d3a78b-8435-4a20-a849-3b7c0be713b7", + "layouts": { + "desktop": { + "top": 10, + "left": 16.279071031395265, + "width": 15.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "4de2a869-67ad-47b2-8b9c-66b83ef660d8": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`\\$${listItem.total_price.toFixed(2)}`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text53", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "47d3a78b-8435-4a20-a849-3b7c0be713b7", + "layouts": { + "desktop": { + "top": 10, + "left": 55.81395159116008, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ccd2a4d8-608a-4e04-8500-6dc547504c22": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{listItem.quantity}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text54", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "47d3a78b-8435-4a20-a849-3b7c0be713b7", + "layouts": { + "desktop": { + "top": 10, + "left": 79.06976680603806, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59": { + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888880d" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container1", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 420, + "left": 4.651162113937779, + "width": 39.00000000000001, + "height": 50 + } + }, + "withDefaultChildren": false + }, + "6704e8d1-4c9a-4324-a5c3-49357c1a782e": { + "id": "6704e8d1-4c9a-4324-a5c3-49357c1a782e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{10}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text55", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 16.279069134183267, + "width": 10, + "height": 30 + } + }, + "parent": "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59" + }, + "e827c106-75d4-421a-be52-60f0690da520": { + "id": "e827c106-75d4-421a-be52-60f0690da520", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{8}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text56", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 55.8139360981166, + "width": 7, + "height": 30 + } + }, + "parent": "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59" + }, + "d8c49bcc-8d06-4547-bb19-4b7c2a90a17d": { + "id": "d8c49bcc-8d06-4547-bb19-4b7c2a90a17d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text57", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 79.06977213164956, + "width": 7, + "height": 30 + } + }, + "parent": "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59" + }, + "6a9a1d90-0458-45f1-a49d-9563ae18b8d3": { + "component": { + "properties": { + "loadingState": { + "type": "toggle", + "displayName": "loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#88888826" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 659.999885559082, + "left": 4.651164003236601, + "width": 39.00000000000001, + "height": 50 + } + }, + "withDefaultChildren": false + }, + "21e90e2c-f1eb-440e-b7d6-1d21c15e7f2a": { + "id": "21e90e2c-f1eb-440e-b7d6-1d21c15e7f2a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text58", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 60.465116268814555, + "width": 6.999999999999999, + "height": 40 + } + }, + "parent": "6a9a1d90-0458-45f1-a49d-9563ae18b8d3" + }, + "4f17d16e-758a-49dd-b85d-7a81e8928a2a": { + "id": "4f17d16e-758a-49dd-b85d-7a81e8928a2a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213b81ff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{8}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`\\$${queries.getCustomerOrders.data\n .map((order) => order?.total_price ?? 0)\n .reduce((sum, n) => {\n return sum + n;\n }, 0)\n .toFixed(2)}`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text41", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 79.06976744186046, + "width": 8, + "height": 40 + } + }, + "parent": "6a9a1d90-0458-45f1-a49d-9563ae18b8d3" + }, + "4c3768db-31db-48bd-9079-31ae3a7206ef": { + "id": "4c3768db-31db-48bd-9079-31ae3a7206ef", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "09bfbae9-3e36-4a93-b8e0-12e46b902229", + "queryName": "editCustomer", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "disabledState": { + "value": "{{ !components.textinput1.isValid || !components.textinput2.isValid || !components.textinput3.isValid || !components.dropdown7.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Update" + }, + "loadingState": { + "value": "{{queries.editCustomer.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button11", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 39.53488372093023, + "width": 4, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "23653770-571b-4857-a45c-7aba0a6e73c4": { + "id": "23653770-571b-4857-a45c-7aba0a6e73c4", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider9", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 360, + "left": 4.651165636896876, + "width": 39.00000000000001, + "height": 10 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "54cc01e3-231b-42ef-9fb9-d97ad100c25e": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onSelect", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "f2b2d1e8-dc3c-433d-9dcc-acf7f7221ca6", + "queryName": "getProductDetails", + "parameters": {} + } + ], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.checkProductQuantity.isLoading || queries.reduceProductQuantity.isLoading || queries.addOrder.isLoading}}", + "fxActive": true + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{queries.getProducts.data.map(product => product.id)}}" + }, + "display_values": { + "value": "{{queries.getProducts.data.map(product => `${product.brand} - ${product.name}`)}}" + }, + "loadingState": { + "value": "{{queries.getProducts.isLoading}}", + "fxActive": true + }, + "placeholder": { + "value": "Select a product" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 780, + "left": 4.65116070509264, + "width": 16, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "0c102a9f-d84e-429c-936b-e02717dcc7cc": { + "id": "0c102a9f-d84e-429c-936b-e02717dcc7cc", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{0}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text60", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 750, + "left": 4.651164977171899, + "width": 10, + "height": 30 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "ca96e2a1-812e-4f3d-be78-113e693b20b3": { + "id": "ca96e2a1-812e-4f3d-be78-113e693b20b3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{0}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text61", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 750, + "left": 46.511626745762634, + "width": 10, + "height": 30 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "b10da0f8-d9f4-4d1d-be61-7b3accbb2d64": { + "id": "b10da0f8-d9f4-4d1d-be61-7b3accbb2d64", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{0}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total ($)" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text62", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 750, + "left": 76.74418365661388, + "width": 7, + "height": 30 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "47bcf998-1d86-4c9d-9fde-9c738903bad2": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.checkProductQuantity.isLoading || queries.reduceProductQuantity.isLoading || queries.addOrder.isLoading}}", + "fxActive": true + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{Array.from({length: queries?.getProductDetails?.data?.qty_in_stock ?? 0}, (_, i) => i + 1)}}" + }, + "display_values": { + "value": "{{Array.from({length: queries?.getProductDetails?.data?.qty_in_stock ?? 0}, (_, i) => i + 1)}}" + }, + "loadingState": { + "value": "{{queries.getProductDetails.isLoading}}", + "fxActive": true + }, + "placeholder": { + "value": "Select quantity" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown3", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 780, + "left": 46.51162072672183, + "width": 11.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "57aa09a1-81be-4734-bade-28355cd09e3e": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "{{((components?.dropdown3?.value ?? 0) * (queries?.getProductDetails?.data?.current_price ?? 0)).toFixed(2)}}" + }, + "placeholder": { + "value": "0" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput17", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 780, + "left": 76.7441870145945, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "338a534e-e7e9-4248-bf55-fa457b7516d2": { + "id": "338a534e-e7e9-4248-bf55-fa457b7516d2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "show-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + } + ], + "styles": { + "backgroundColor": { + "value": "#213b81ff" + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#375FCF" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add Product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button14", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 83.72091289215417, + "width": 6, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "8fef9dce-58f0-4727-ae46-dea836b63888": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown4.value != undefined ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown4.value != undefined ? true : \"\"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{[\"appliances\", \"beauty\", \"electronics\", \"kitchen\", \"stationary\"]}}" + }, + "display_values": { + "value": "{{[\"Appliances\", \"Beauty\", \"Electronics\", \"Kitchen\", \"Stationary\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select type of product" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown4", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1", + "layouts": { + "desktop": { + "top": 140, + "left": 11.62790224971062, + "width": 15, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "3d8d2ff7-e634-4ee5-b941-c4c8b21cd402": { + "id": "3d8d2ff7-e634-4ee5-b941-c4c8b21cd402", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^\\d+$/.test(components.textinput18.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^\\d+$/.test(components.textinput18.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter quantity to be added" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput18", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 60.46510156732731, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "0441f736-54ce-4cf9-ba60-faccf154124a": { + "id": "0441f736-54ce-4cf9-ba60-faccf154124a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text36", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 4.651162598330287, + "width": 3, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "8737f63e-9ec9-46b3-acae-88dfc320e74c": { + "id": "8737f63e-9ec9-46b3-acae-88dfc320e74c", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^(\\d*\\.)?\\d+$/.test(components.textinput19.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^(\\d*\\.)?\\d+$/.test(components.textinput19.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter price ($)" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput19", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 11.62790302224886, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "d62cfa83-4661-4ac6-a52f-6ca0def3a6b1" + }, + "fe446d8e-ea94-43b6-bba2-1aedf9c9390f": { + "id": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffff1a" + }, + "headerTextColor": { + "value": "#213b81ff" + }, + "bodyBackgroundColor": { + "value": "#ffffff1a" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Edit product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{false}}" + }, + "triggerButtonLabel": { + "value": "Add product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "380px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal4", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 53.48837380790299, + "width": 4.999999999999999, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-2" + }, + "b318dd60-0908-47d5-a406-be0dea02a7e3": { + "id": "b318dd60-0908-47d5-a406-be0dea02a7e3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text32", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 4.651168424894576, + "width": 3, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "b3882e8e-1ef9-49fa-89a7-ade20b60117e": { + "id": "b3882e8e-1ef9-49fa-89a7-ade20b60117e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput12.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput12.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table2.selectedRow.name}}" + }, + "placeholder": { + "value": "Enter name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput12", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 11.627907708198, + "width": 36, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "1ab7f02b-0f0c-4e8b-ae92-598914682761": { + "id": "1ab7f02b-0f0c-4e8b-ae92-598914682761", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{components.textinput20.value.length > 0 ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{components.textinput20.value.length > 0 ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table2.selectedRow.brand}}" + }, + "placeholder": { + "value": "Enter company name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput20", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 60.46510212031943, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "cf9986df-f32b-41af-90e4-0691dea35a1e": { + "id": "cf9986df-f32b-41af-90e4-0691dea35a1e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Brand" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text34", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.162797249108145, + "width": 4, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "2ac19144-0be7-4c06-973d-63333141314a": { + "id": "2ac19144-0be7-4c06-973d-63333141314a", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcde", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider8", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 280, + "left": 4.00079841256229e-7, + "width": 43, + "height": 10 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "d44a2f3a-f61f-4489-813a-2d7d84e50b50": { + "id": "d44a2f3a-f61f-4489-813a-2d7d84e50b50", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "38520d62-864b-4489-8e08-796244458fec", + "queryName": "editProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#213B81", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213B81", + "fxActive": true + }, + "disabledState": { + "value": "{{ !components.textinput12.isValid || !components.textinput20.isValid || !components.dropdown5.isValid || !components.textinput22.isValid || !components.textinput21.isValid}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Save" + }, + "loadingState": { + "value": "{{queries.editProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button16", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 310, + "left": 83.72093120374878, + "width": 5, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "76d94a84-7977-4efa-9101-8ebb31ba6c5d": { + "id": "76d94a84-7977-4efa-9101-8ebb31ba6c5d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + } + ], + "styles": { + "backgroundColor": { + "value": "#ffffffff" + }, + "textColor": { + "value": "#213b81ff" + }, + "loaderColor": { + "value": "#213b81ff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#213b81ff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button17", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": { + "buttonText": "Button" + }, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 310, + "left": 69.76741833633251, + "width": 5, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "e6a96636-5c0b-446f-841c-d1bf158ef5e9": { + "id": "e6a96636-5c0b-446f-841c-d1bf158ef5e9", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text37", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 4.6511560061557224, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "4f2ddbd1-0cff-4935-8c38-974ed434cae7": { + "id": "4f2ddbd1-0cff-4935-8c38-974ed434cae7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text38", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 51.16278773230763, + "width": 4, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "131b8395-3cec-4c0d-bbbe-e374d515e070": { + "id": "131b8395-3cec-4c0d-bbbe-e374d515e070", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Type" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text40", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651158461484289, + "width": 3, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "e85bc7ac-87be-49ce-8260-9e5343d17d6b": { + "id": "e85bc7ac-87be-49ce-8260-9e5343d17d6b", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown5.value != undefined ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown5.value != undefined ? true : \"\"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{components.table2.selectedRow.type}}" + }, + "values": { + "value": "{{[\"appliances\", \"beauty\", \"electronics\", \"kitchen\", \"stationary\"]}}" + }, + "display_values": { + "value": "{{[\"Appliances\", \"Beauty\", \"Electronics\", \"Kitchen\", \"Stationary\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select type of product" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown5", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 11.627898671773568, + "width": 15, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "3bbf57a9-e267-4fd6-803a-74390480638d": { + "id": "3bbf57a9-e267-4fd6-803a-74390480638d", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^\\d+$/.test(components.textinput21.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^\\d+$/.test(components.textinput21.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table2.selectedRow.qty_in_stock}}" + }, + "placeholder": { + "value": "Enter quantity to be added" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput21", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 60.46510923238416, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "88633dc5-2a0d-4e0e-bf4f-a864859a7135": { + "id": "88633dc5-2a0d-4e0e-bf4f-a864859a7135", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text45", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 4.651162598330287, + "width": 3, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "69bf3926-6c1e-4ec5-9c5a-488b0967c7e0": { + "id": "69bf3926-6c1e-4ec5-9c5a-488b0967c7e0", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "{{/^(\\d*\\.)?\\d+$/.test(components.textinput22.value) ? \"#dadcde\" : \"#ff0000\"}}", + "fxActive": true + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^(\\d*\\.)?\\d+$/.test(components.textinput22.value) ? true : \"\"}}" + } + }, + "properties": { + "value": { + "value": "{{components.table2.selectedRow.current_price}}" + }, + "placeholder": { + "value": "Enter price ($)" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput22", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 11.627900290084854, + "width": 15.000000000000002, + "height": 40 + } + }, + "parent": "fe446d8e-ea94-43b6-bba2-1aedf9c9390f" + }, + "f5a01d5f-a38c-411e-9ad9-646304b6c29c": { + "id": "f5a01d5f-a38c-411e-9ad9-646304b6c29c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{queries.getCustomerOrders.isLoading}}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "" + }, + "loadingState": { + "value": "{{queries.getCustomerOrders.isLoading || queries.customerOrderChart.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text47", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 380, + "left": 88.37209056618315, + "width": 3, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "10d97fa5-70ed-49ea-b755-7e77b676018e": { + "id": "10d97fa5-70ed-49ea-b755-7e77b676018e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{10}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Prod. Id" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text48", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 0.0000028836761174488856, + "width": 5, + "height": 30 + } + }, + "parent": "7fd3caa1-8a6c-4a32-8d16-5c448c6d4d59" + }, + "f49067b7-5cb3-4a76-81a5-6a934623c763": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`#${listItem.product_id}`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text49", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "47d3a78b-8435-4a20-a849-3b7c0be713b7", + "layouts": { + "desktop": { + "top": 10, + "left": -3.134246213676306e-7, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "79f5d6a0-d8da-401a-985f-39b3c5fe7ee5": { + "id": "79f5d6a0-d8da-401a-985f-39b3c5fe7ee5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Country" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text59", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 51.162796233025766, + "width": 5, + "height": 40 + } + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d" + }, + "bbc5e3e2-1440-49d4-90ca-62168f05a326": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown6.value != undefined ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown6.value != undefined ? true : \"\"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{[\"Argentina\",\"Canada\",\"Colombia\",\"Denmark\",\"France\",\"India\",\"USA\"]}}" + }, + "display_values": { + "value": "{{[\"Argentina\",\"Canada\",\"Colombia\",\"Denmark\",\"France\",\"India\",\"USA\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a country" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown6", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "c01bbbf2-ec98-4ae5-a8c9-448266a6289d", + "layouts": { + "desktop": { + "top": 120, + "left": 62.79068508336573, + "width": 14.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "43a8f399-2396-40f3-97a4-f71d993f5f52": { + "id": "43a8f399-2396-40f3-97a4-f71d993f5f52", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "{{components.dropdown7.value != undefined ? \"0px 0px 0px 1px #00000040\" : \"0px 0px 0px 1px #ff0000ff\"}}", + "fxActive": true + } + }, + "validation": { + "customRule": { + "value": "{{components.dropdown7.value != undefined ? true : \"\"}}" + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{components.table1.selectedRow.country}}" + }, + "values": { + "value": "{{[\"Argentina\",\"Canada\",\"Colombia\",\"Denmark\",\"France\",\"India\",\"USA\"]}}" + }, + "display_values": { + "value": "{{[\"Argentina\",\"Canada\",\"Colombia\",\"Denmark\",\"France\",\"India\",\"USA\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a country" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown7", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": ["one", "two", "three"], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 240, + "left": 16.27906996955359, + "width": 14.000000000000002, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "ef8a575b-4af5-4441-b2b4-3e019d0605bf": { + "id": "ef8a575b-4af5-4441-b2b4-3e019d0605bf", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#666666ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Country" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text63", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 240, + "left": 4.651161831394547, + "width": 5, + "height": 40 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "f9648d95-7e44-4c04-8251-76ceca06bf40": { + "id": "f9648d95-7e44-4c04-8251-76ceca06bf40", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "10" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "" + }, + "markerColor": { + "value": "#CDE1F8" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getCustomerOrders.isLoading || queries.customerOrderChart.isLoading || queries.customerOrderChartAfterColors.isLoading}}", + "fxActive": true + }, + "jsonDescription": { + "value": "{{queries.getCustomerOrders.isLoading || queries.customerOrderChart.isLoading || queries.customerOrderChartAfterColors.isLoading || queries.getCustomerOrders.data.length == 0 ? \"{}\" : JSON.stringify(queries?.customerOrderChartAfterColors?.data ?? {})}}" + }, + "type": { + "value": "line" + }, + "data": { + "value": "[\n { \"x\": \"Jan\", \"y\": 100},\n { \"x\": \"Feb\", \"y\": 80},\n { \"x\": \"Mar\", \"y\": 40}\n]" + }, + "barmode": { + "value": "group" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart4", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "layouts": { + "desktop": { + "top": 60, + "left": 55.81395348837209, + "width": 17, + "height": 280 + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c" + }, + "9fa4e38c-9387-4900-bb70-ff415b46bcdf": { + "id": "9fa4e38c-9387-4900-bb70-ff415b46bcdf", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#213b80ff" + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 43, + "height": 70 + } + } + }, + "bc1a299e-b62e-4e60-a161-14427d60d051": { + "id": "bc1a299e-b62e-4e60-a161-14427d60d051", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff" + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": "{{0}}" + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "B R A N D" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text51", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 2.3255827912519793, + "width": 6, + "height": 40 + } + }, + "parent": "9fa4e38c-9387-4900-bb70-ff415b46bcdf" + }, + "43bb2148-1b6a-4763-9919-979202193c52": { + "id": "43bb2148-1b6a-4763-9919-979202193c52", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffffff", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Sales Analytics" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text64", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 67.44186626637374, + "width": 12, + "height": 40 + } + }, + "parent": "9fa4e38c-9387-4900-bb70-ff415b46bcdf" + }, + "90d2c00b-320e-4aa4-917e-6b7992654326": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#dadcdeff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "a291e07a-cb22-4f02-b05d-40707ee14e2c", + "layouts": { + "desktop": { + "top": 60, + "left": 51.16278745544168, + "width": 1, + "height": 280 + } + }, + "withDefaultChildren": false + }, + "274f2ffa-b06c-4b21-80d0-cbd7ad6dece4": { + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "allowSelection": { + "type": "toggle", + "displayName": "Allow selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "defaultSelectedRow": { + "type": "code", + "displayName": "Default selected row", + "validation": { + "schema": { + "type": "object" + } + } + }, + "showAddNewRowButton": { + "type": "toggle", + "displayName": "Show add new row button", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.getOrders.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.getOrders.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{10}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{true}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true, + "generateNestedColumns": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737", + "autogenerated": true + }, + { + "id": "ecb7323d-bf03-4856-992a-4d12b2711c0e", + "name": "customer_id", + "key": "customer_id", + "columnType": "number", + "autogenerated": true + }, + { + "id": "84563b44-0e3c-4c56-bcad-1392f5c6c1da", + "name": "country", + "key": "country", + "columnType": "string", + "autogenerated": true + }, + { + "id": "556f9785-ae13-4cf5-9252-d34beaed481a", + "name": "product_id", + "key": "product_id", + "columnType": "number", + "autogenerated": true + }, + { + "id": "7eb4e510-53dd-42ec-8261-e188d5b9c3ad", + "name": "product_name", + "key": "product_name", + "columnType": "string", + "autogenerated": true + }, + { + "id": "41f621c1-0982-420c-9d0a-65aef3d583e2", + "name": "quantity", + "key": "quantity", + "columnType": "number", + "autogenerated": true + }, + { + "id": "d8112b51-7942-424f-8940-8e6a1ca0209b", + "name": "at_price", + "key": "at_price", + "columnType": "number", + "autogenerated": true + }, + { + "id": "0a7386fb-a654-43cb-b71c-8c8714eb4ce5", + "name": "total_price", + "key": "total_price", + "columnType": "number", + "autogenerated": true + }, + { + "id": "0936336a-5d6f-4647-aaf4-a4b99c1c4895", + "name": "created_at", + "key": "created_at", + "columnType": "string", + "autogenerated": true + }, + { + "id": "67effed7-a352-4bd2-905f-08aa63bc53a5", + "name": "updated_at", + "key": "updated_at", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 88, + "ecb7323d-bf03-4856-992a-4d12b2711c0e": 135, + "556f9785-ae13-4cf5-9252-d34beaed481a": 143, + "41f621c1-0982-420c-9d0a-65aef3d583e2": 142, + "d8112b51-7942-424f-8940-8e6a1ca0209b": 156, + "0a7386fb-a654-43cb-b71c-8c8714eb4ce5": 162, + "84563b44-0e3c-4c56-bcad-1392f5c6c1da": 167, + "7eb4e510-53dd-42ec-8261-e188d5b9c3ad": 362 + } + }, + "actions": { + "value": [] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "defaultSelectedRow": { + "value": "{{{\"id\":1}}}" + }, + "showAddNewRowButton": { + "value": "{{false}}" + }, + "allowSelection": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": ["is_active"] + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table3", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + }, + { + "displayName": "Download table data", + "handle": "downloadTableData", + "params": [ + { + "handle": "type", + "displayName": "Type", + "options": [ + { + "name": "Download as Excel", + "value": "xlsx" + }, + { + "name": "Download as CSV", + "value": "csv" + }, + { + "name": "Download as PDF", + "value": "pdf" + } + ], + "defaultValue": "{{Download as Excel}}", + "type": "select" + } + ] + } + ] + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-3", + "layouts": { + "desktop": { + "top": 80, + "left": 2.3255804871948036, + "width": 41, + "height": 490 + } + }, + "withDefaultChildren": false + }, + "248634d0-c840-4b85-8c32-56c87ff8549a": { + "id": "248634d0-c840-4b85-8c32-56c87ff8549a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#213B81", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{ !queries.getOrders.isLoading }}", + "fxActive": true + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{`${queries?.getOrders?.data?.length ?? 0} Orders`}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text65", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 2.3255822593327444, + "width": 14, + "height": 40 + } + }, + "parent": "5e82a221-8213-4caf-817c-88f97d8e4883-3" + } + }, + "handle": "home", + "name": "Home" + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "5000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": 2400, + "canvasBackgroundColor": "", + "backgroundFxQuery": "" + } + }, + "appId": "7e2569c0-debc-4e6f-80b6-39defd06b40c", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-09-11T18:11:00.826Z", + "updatedAt": "2023-10-10T10:39:44.644Z" + } + ], + "appEnvironments": [ + { + "id": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "production", + "isDefault": true, + "priority": 3, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "staging", + "isDefault": false, + "priority": 2, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "development", + "isDefault": false, + "priority": 1, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + } + ], + "dataSourceOptions": [ + { + "id": "09bf5c38-8cec-4973-8855-643c5133d87e", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ffbf05e-51d6-4087-a11f-b4d7e431dc83", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8210c7ae-f59e-4bea-b0c5-50c118343441", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "63a0be80-a870-4cc2-ab64-8127efbd108d", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "869450d4-61c3-4d90-b714-4b1881e39518", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd7cbbff-0d68-4493-983d-37b726ebc98c", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3e4c6b07-8e27-4163-a2f2-cbb55942f87b", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "70a7e577-d084-40ce-a5e7-058c86912c66", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "ca37482f-4921-4c56-87dc-6b2eae124de4", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "35c27146-7fc0-4b09-a2ce-0f245bbf714b", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3bfaae26-a193-41be-a6df-6c854851ec90", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a1d06fc-5357-4784-8468-61886137214b", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "4ebed5f4-aa04-4674-88b5-475de6305c15", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "dc16dddb-6eb9-4a56-8b83-c7821c1be3e4", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a59db8a-b46b-4411-ba16-c6e9614fde09", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "6fc0a89f-6fe0-48ed-b085-f1ba06c15b00", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9c069f5a-1e8c-432e-ac34-4bd3102d8c84", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9ce12342-7f72-4170-a0c3-a2fa750b08ec", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "08bc41cc-49b7-46f1-a7d8-e491f3b1e687", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e5d9ca99-a662-4dc3-bb06-11d3efc5b0e6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df795abb-982a-4a49-852a-6e049d72b063", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd79676a-f641-4f13-897c-a4487298e956", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "109373cc-a29d-49cf-9c09-b78d9000c797", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "394cd4b9-6678-4666-a3b4-7220fdc9f3fa", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "49a16184-fb7f-4302-8f3a-183203af3e13", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "58c756e7-4ac8-47e5-ad47-dd9f3bd54bd6", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a115c49b-a119-40d0-8db0-f020724207ad", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e138a408-40a3-4a04-8f43-d4d9f77b670d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a980201d-0197-41af-8b44-5b9a777d08db", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b92d7e20-aef7-408c-a5fd-cfb1afe3802f", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "427cc0a3-b736-4552-a043-849312f72535", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "fd4bc72c-00f5-42d5-9fe6-758b3c4e05a1", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df6525aa-cba3-40aa-92be-d908007f1d47", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "064644df-c753-4c38-a368-08760a852289", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ed34011-fb0c-4df6-9ac3-c0722e5afc15", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "603ecf7a-24ca-4102-a3a2-9adf3540d47f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4254e048-0e9c-4173-ac9b-6448fdfe0272", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "81c95c9d-4d5c-4509-bcc0-9b6db463646a", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "a4fec9af-15b8-4288-a3dc-c6797f050b2c", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "72371933-729a-4e35-9915-950ed7d1a6da", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0c980db9-a929-481a-be6a-b71ea5ad2107", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "7f703daa-1e72-4a75-bc70-884816577a05", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e950b029-4156-4afe-8a18-e7927aafc191", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "ca1f9156-a727-4e4d-b609-396d9ad65b7a", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a1043e60-e673-4041-a64f-e26e4609cdbf", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b5192850-7615-4e13-b1ae-93b956f5be03", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "100298a0-928d-4589-a70f-34a0926a28a1", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "aba37959-1599-4a70-ae4c-7b05ffa2a800", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e8040071-0a1a-4e11-a04f-7cbc179d5868", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "ef525392-c7cb-431d-8525-afd52f2a0131", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3eb4f10b-d70f-457b-a6d6-1facf33bb388", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "649ebc41-1207-4383-ac37-affebaf46025", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "2b64c284-3043-4011-b501-7438f977e8d6", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "66234021-3d1e-4314-aa85-233e15c788c4", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b3ca510b-fd4d-48b1-a204-39905d3553d6", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0af3f0c9-bf1e-4b60-8868-25dcaa5c509c", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "42d8efc3-5c1a-4085-a259-b38e0a5c2df5", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "7e49e5a8-08d7-4a02-897c-13d235ab00f9", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f7cf3288-f755-40db-ac07-c6f0832b7c6b", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "cd9235bc-aec9-4da1-b22c-e7da50f3cde6", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "5a13235b-390e-4888-bbca-4c0e7e85b811", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e096bd24-e396-4893-88dd-2872176057a2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "69f40c97-1d4e-4f87-9a98-7f0a12a3238b", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f9d33ef5-bf7d-4c52-a919-64cd39b5a9c5", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a011c5e5-60bd-44d4-a057-b5aa23b75aee", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "bb811868-ea85-4b54-8a13-e999971eeb9d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "24db297d-9213-4102-a253-26a34565ee73", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "73e98e30-9fd0-4ee2-b001-a91cc6fa8396", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4bb78281-112c-411c-9fc1-fe6b8c4ef0c9", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "4edc07e1-819c-433d-9545-7156e0813abf", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "7eb5fab2-76bb-4457-b049-d2fc338cd143", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a729b4d1-1520-4a4f-92d9-5b4d39e609a7", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd459a47-9e32-448b-a362-a957ed61a744", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "ea086241-7ebf-42b3-a9e0-98e7f9615fde", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.259Z", + "updatedAt": "2023-02-07T08:20:48.259Z" + }, + { + "id": "2f3691b6-4dc5-49db-be70-2646b0b37b3e", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "88454045-b2a0-4f59-baf5-0f32a0f5000c", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.268Z", + "updatedAt": "2023-02-07T08:20:48.268Z" + }, + { + "id": "0a14939a-e6e2-4156-833d-692fa2374241", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "0d46628b-d8e9-4463-b4d1-bf254a825ffd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.273Z", + "updatedAt": "2023-02-07T08:20:48.273Z" + }, + { + "id": "fcd55e6a-7b48-4541-b86b-8fc5d661ff08", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.283Z", + "updatedAt": "2023-02-07T08:20:48.283Z" + }, + { + "id": "3e6b2492-3d73-4792-b447-3bd27a74d424", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.287Z", + "updatedAt": "2023-02-07T08:20:48.287Z" + }, + { + "id": "506a0e32-25c0-4a19-a6f7-9d04c339d28b", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.289Z", + "updatedAt": "2023-02-07T08:20:48.289Z" + }, + { + "id": "6b19a6ab-7756-4386-9592-6ab4d5fa98d1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.295Z", + "updatedAt": "2023-02-07T08:20:48.295Z" + }, + { + "id": "af5be5e6-666d-4437-a75c-a10830980dbe", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.297Z", + "updatedAt": "2023-02-07T08:20:48.297Z" + }, + { + "id": "983162ea-8848-4388-b88c-971523d0cbb1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.299Z", + "updatedAt": "2023-02-07T08:20:48.299Z" + }, + { + "id": "a308e389-9497-4f1b-9564-5424a0a0b7b1", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.348Z", + "updatedAt": "2023-02-07T08:20:48.348Z" + }, + { + "id": "18d6b459-7d7d-4ba0-9ee7-c581844e0d45", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.351Z", + "updatedAt": "2023-02-07T08:20:48.351Z" + }, + { + "id": "478e9b22-6f4d-45fa-b50f-77b45a616669", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.353Z", + "updatedAt": "2023-02-07T08:20:48.353Z" + }, + { + "id": "bd491146-3009-418f-a4d6-5e976d966a01", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.356Z", + "updatedAt": "2023-02-07T08:20:48.356Z" + }, + { + "id": "9383e443-5c0f-4fe9-ac9a-273971edd22b", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.357Z", + "updatedAt": "2023-02-07T08:20:48.357Z" + }, + { + "id": "764bce5d-3227-4681-806f-50051e97a6f1", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.359Z", + "updatedAt": "2023-02-07T08:20:48.359Z" + }, + { + "id": "2f79cbc9-4ecc-4a2a-8f14-624961660a51", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "2f701e52-7cfe-49a8-bb40-956ed45342d1", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.858Z", + "updatedAt": "2023-02-07T10:13:59.858Z" + }, + { + "id": "ce715761-73f2-46b1-95f2-124d2b098a77", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "da58d6d5-09e3-4d72-a3cb-48277e4d5379", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.863Z", + "updatedAt": "2023-02-07T10:13:59.863Z" + }, + { + "id": "116031c1-ee38-483d-9625-b13548d97459", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "999deb1f-6190-4508-8607-2b57a9acf977", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.867Z", + "updatedAt": "2023-02-07T10:13:59.867Z" + }, + { + "id": "4ba4ad64-bdac-45e2-a112-da4bb720e654", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "f20d22f2-75db-4ff7-94d1-3667878c031b", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.842Z" + }, + { + "id": "9659e653-8eca-4ed1-9cfa-c27c3080bc61", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9fe7b96b-8899-40ae-bfb2-f2c56c89389e", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.834Z" + }, + { + "id": "9da2713d-98d6-4388-a5e7-42cb22d2a0f9", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "d5b29186-21d7-45e3-a40c-7d3a4a6306e2", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.762Z" + }, + { + "id": "1c193e6d-f21a-4945-a1a3-0271900258ef", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1852e614-7f87-4e16-8d35-ae924ce2193b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.450Z", + "updatedAt": "2023-07-07T10:07:23.333Z" + }, + { + "id": "f9ff54d6-55af-4428-ad9a-75343cd2cd36", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e3baf697-ea3e-4f03-be01-db6d0344f635", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.698Z" + }, + { + "id": "7c172ef0-eabb-4ce1-9fef-7534e4804218", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b159f378-74b0-44cb-9b04-ea4a1c02bd09", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.706Z" + }, + { + "id": "91112338-8edc-437e-a066-eb7445b8c9f0", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "c85938e4-7be9-46c6-b37f-045435dc17e7", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "a754d3d0-ff68-47b0-ad58-073862e0e78a", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "57204c96-1590-49d0-ae82-85d6096b4f3f", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.753Z", + "updatedAt": "2023-07-21T15:39:41.753Z" + }, + { + "id": "5d8aeece-e171-4f98-a17a-dafcf094eefc", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.754Z", + "updatedAt": "2023-07-21T15:39:41.754Z" + }, + { + "id": "37f7e000-2b47-429f-b7e4-9e024479d9b8", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.756Z", + "updatedAt": "2023-07-21T15:39:41.756Z" + }, + { + "id": "fb85fb2c-9aed-4dda-b167-d9b95bd8695f", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.762Z", + "updatedAt": "2023-07-21T15:39:41.762Z" + }, + { + "id": "57bc1c57-3a79-4f8c-8f82-743783098320", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.764Z", + "updatedAt": "2023-07-21T15:39:41.764Z" + }, + { + "id": "e3df8c1e-e689-460e-a1c0-a6ac34e2c6fb", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.765Z", + "updatedAt": "2023-07-21T15:39:41.765Z" + }, + { + "id": "ddb73901-f6b8-4e98-a98e-d20764e981d5", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.770Z", + "updatedAt": "2023-07-21T15:39:41.770Z" + }, + { + "id": "64ded0f0-a523-46e0-8de4-1233af798e69", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.773Z", + "updatedAt": "2023-07-21T15:39:41.773Z" + }, + { + "id": "563951c4-3c25-4c16-85bd-bf35c67c541d", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.774Z", + "updatedAt": "2023-07-21T15:39:41.774Z" + }, + { + "id": "35da5f37-e660-4711-8b89-3ed348857e88", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "apiKey": { + "credential_id": "61601401-8d9b-47d8-81cc-fcb0ab9df125", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.509Z" + }, + { + "id": "7054580b-dcf1-42db-8599-b295874586e4", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "apiKey": { + "credential_id": "309cd1c4-4241-4757-9216-7c1d5052a6f2", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.508Z" + }, + { + "id": "69646d74-947f-4ac7-9560-b58fce035d3c", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "apiKey": { + "credential_id": "02ea1d76-bf4e-40b5-a57a-ad02467754d7", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.489Z" + }, + { + "id": "607909a2-1d4d-4bab-8468-1f0f8351ab14", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.735Z", + "updatedAt": "2023-08-11T05:25:31.735Z" + }, + { + "id": "9423866f-d475-42c3-b2a7-c63be6ed9abb", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.739Z", + "updatedAt": "2023-08-11T05:25:31.739Z" + }, + { + "id": "90a1596f-5d45-4ad4-a376-3b555f4773bd", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.741Z", + "updatedAt": "2023-08-11T05:25:31.741Z" + }, + { + "id": "a41de1f3-3486-4f59-a964-fd99a077d61b", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.747Z", + "updatedAt": "2023-08-11T05:25:31.747Z" + }, + { + "id": "5b452053-b728-48ea-969f-35ee44bd449e", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.750Z", + "updatedAt": "2023-08-11T05:25:31.750Z" + }, + { + "id": "b4e5d146-7682-44c6-b009-9a59a3a144bb", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.752Z", + "updatedAt": "2023-08-11T05:25:31.752Z" + }, + { + "id": "d01715d9-1ffb-405e-b5e3-b9d786697627", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.761Z", + "updatedAt": "2023-08-11T05:25:31.761Z" + }, + { + "id": "fff3b76b-14f9-49c2-9520-ccff9f3b0239", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.764Z", + "updatedAt": "2023-08-11T05:25:31.764Z" + }, + { + "id": "c1136230-787e-4985-afa3-ec88e383b3c1", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.766Z", + "updatedAt": "2023-08-11T05:25:31.766Z" + }, + { + "id": "6e14d7b5-99db-4f14-84e4-8fa34ca096da", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.772Z", + "updatedAt": "2023-08-11T05:25:31.772Z" + }, + { + "id": "a0bed57b-7aae-4a5a-b154-49cdd9e508cb", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.775Z", + "updatedAt": "2023-08-11T05:25:31.775Z" + }, + { + "id": "13272f64-55dc-4fd9-a692-9dc9afe40b97", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.780Z", + "updatedAt": "2023-08-11T05:25:31.780Z" + }, + { + "id": "abbd66ec-c0a2-4893-8bd1-a90100ec7963", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.785Z", + "updatedAt": "2023-08-11T05:25:31.785Z" + }, + { + "id": "563d611b-ed1e-46a1-bad7-f1ffd91cffef", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connection_limit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf05673058", + "encrypted": false + }, + "password": { + "value": "08BcGsD9))xK7rpLAKDw8QK", + "encrypted": false + }, + "host": { + "value": "dbpwf05673058.sysp0000.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "supplychain", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.788Z", + "updatedAt": "2023-08-11T05:25:31.788Z" + }, + { + "id": "eb8f5145-06ae-4ee6-bd79-26bbacf672d7", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.791Z", + "updatedAt": "2023-08-11T05:25:31.791Z" + }, + { + "id": "aa622b9c-27c6-45c6-8ec7-471e4a346a7c", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "34b17572-60b1-4895-bd93-5c85ba03b319", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "d8dbbb97-667b-42cf-8e1d-c3920b91ae0a", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "3d4a1b27-f9bd-47ae-aaaa-d1564e91456a", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.804Z", + "updatedAt": "2023-08-11T05:27:56.804Z" + }, + { + "id": "525b25cb-90b1-4d2c-80cf-b4fc2b3e4fee", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.807Z", + "updatedAt": "2023-08-11T05:27:56.807Z" + }, + { + "id": "4a853db8-3f1d-4cf2-93c2-ce3e28266b36", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.809Z", + "updatedAt": "2023-08-11T05:27:56.809Z" + }, + { + "id": "846b03f8-f6e1-4a79-8ae7-d545c1f4f0b5", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.813Z", + "updatedAt": "2023-08-11T05:27:56.813Z" + }, + { + "id": "4de0613b-4f14-40c9-aeac-7d027ff73833", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.815Z", + "updatedAt": "2023-08-11T05:27:56.815Z" + }, + { + "id": "69eb4761-b882-4c51-8e11-e568731bc43e", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.818Z", + "updatedAt": "2023-08-11T05:27:56.818Z" + }, + { + "id": "564f68c5-4980-493f-9699-1ff567482fd0", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.821Z", + "updatedAt": "2023-08-11T05:27:56.821Z" + }, + { + "id": "06d2856d-000f-47d1-a7ff-8e818eb42478", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.824Z", + "updatedAt": "2023-08-11T05:27:56.824Z" + }, + { + "id": "f2579e45-a0bd-423f-b724-9af76d33ea87", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.825Z", + "updatedAt": "2023-08-11T05:27:56.825Z" + }, + { + "id": "773493c0-efdf-465a-bab1-910a8ff9c6c8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "5a426139-fa01-4ea3-b1fe-9794e901503f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.832Z", + "updatedAt": "2023-08-11T05:27:56.832Z" + }, + { + "id": "026abb10-56a6-488b-b36c-f55d613893fc", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "1c465591-2ecf-4a81-945f-8dc32d7d12c5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.838Z", + "updatedAt": "2023-08-11T05:27:56.838Z" + }, + { + "id": "6c3b028c-314a-4534-8660-d412d627cda8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "159a0956-8cfb-4aa6-8a3a-e833042c6a86", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.845Z", + "updatedAt": "2023-08-11T05:27:56.845Z" + }, + { + "id": "67450519-17ee-4c56-a7ea-a0a596d3f139", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.231Z", + "updatedAt": "2023-08-11T05:30:20.231Z" + }, + { + "id": "ebb05718-564b-48dc-be97-fe9042a03a32", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.233Z", + "updatedAt": "2023-08-11T05:30:20.233Z" + }, + { + "id": "906cfd94-81db-408d-8771-ac9dd7475525", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.235Z", + "updatedAt": "2023-08-11T05:30:20.235Z" + }, + { + "id": "8ce3c15e-ce3c-443b-be1b-41de4ba604c5", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.239Z", + "updatedAt": "2023-08-11T05:30:20.239Z" + }, + { + "id": "c09660a0-0d13-4c77-825b-05035e7009d3", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.241Z", + "updatedAt": "2023-08-11T05:30:20.241Z" + }, + { + "id": "81225ea3-efa6-497f-a7a0-c4993eb0ccf4", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.243Z", + "updatedAt": "2023-08-11T05:30:20.243Z" + }, + { + "id": "fe1d2b79-b36f-4b6a-a169-05c7dfc012ae", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.246Z", + "updatedAt": "2023-08-11T05:30:20.246Z" + }, + { + "id": "c006f812-b14d-492f-bbb3-473498b1f0d1", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.249Z", + "updatedAt": "2023-08-11T05:30:20.249Z" + }, + { + "id": "44bb1b06-e6d5-4762-ae62-1ee890f646b3", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.250Z", + "updatedAt": "2023-08-11T05:30:20.250Z" + }, + { + "id": "15054e36-8e1f-410c-8038-1682aa54bc0e", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.255Z", + "updatedAt": "2023-08-11T05:30:20.255Z" + }, + { + "id": "114ca108-5785-41e3-a668-f93b0786d3a3", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.258Z", + "updatedAt": "2023-08-11T05:30:20.258Z" + }, + { + "id": "8932558d-cc2f-48bc-9073-67284f5519b2", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.260Z", + "updatedAt": "2023-08-11T05:30:20.260Z" + }, + { + "id": "16722499-31b5-4b46-b1df-ed4ad1acc8ec", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.039Z", + "updatedAt": "2023-08-11T05:30:51.039Z" + }, + { + "id": "9a318479-eeab-4446-801a-52e9cfd3070d", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.041Z", + "updatedAt": "2023-08-11T05:30:51.041Z" + }, + { + "id": "8e8d8043-75c0-4d79-b653-6878cf3443d4", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.043Z", + "updatedAt": "2023-08-11T05:30:51.043Z" + }, + { + "id": "9f7ac124-bb3d-49b3-a31e-22d3748893aa", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.046Z", + "updatedAt": "2023-08-11T05:30:51.046Z" + }, + { + "id": "9a550543-805f-4b34-aa13-b92d02f1ffcb", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.049Z", + "updatedAt": "2023-08-11T05:30:51.049Z" + }, + { + "id": "d33927b6-68cb-491c-89ab-92eba9e9e420", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.050Z", + "updatedAt": "2023-08-11T05:30:51.050Z" + }, + { + "id": "1cf19dac-8763-472b-a7c3-79bd785fe5c2", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.054Z", + "updatedAt": "2023-08-11T05:30:51.054Z" + }, + { + "id": "8b0aba4d-a18b-46e0-b6f8-74e3d0e120d0", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.056Z", + "updatedAt": "2023-08-11T05:30:51.056Z" + }, + { + "id": "ce5afd07-2e89-4459-9316-52d3a1ff4cc8", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.058Z", + "updatedAt": "2023-08-11T05:30:51.058Z" + }, + { + "id": "3705a1ca-7f79-4b54-b2f3-9c9c51ac15fb", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.061Z", + "updatedAt": "2023-08-11T05:30:51.061Z" + }, + { + "id": "9f910e79-2e89-4b95-8f51-e4c8f468bb06", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.063Z", + "updatedAt": "2023-08-11T05:30:51.063Z" + }, + { + "id": "c29e2d61-df14-4058-be31-0e6049af3767", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.065Z", + "updatedAt": "2023-08-11T05:30:51.065Z" + }, + { + "id": "a71b2210-07a0-4306-9e9a-58a67cbb16fb", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "970a7dc8-1b45-4629-85f4-0c90d979ac77", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.071Z", + "updatedAt": "2023-08-11T05:30:51.071Z" + }, + { + "id": "ca31376b-a3c7-4816-94f9-6a5f33a18752", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "84b081aa-1af2-4c94-a3f9-0aab8fbb4387", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.076Z", + "updatedAt": "2023-08-11T05:30:51.076Z" + }, + { + "id": "2b3ad55c-e489-4b64-8bb0-3259c2226b9b", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "daf902f8-4130-4b27-b809-054142b85533", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.080Z", + "updatedAt": "2023-08-11T05:30:51.080Z" + }, + { + "id": "e11d8442-b59c-41b4-907b-d6a9d39ba8f4", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "d80cea6e-acc6-4f7d-ba45-33907f1577a8", + "encrypted": true + }, + "refresh_token": { + "credential_id": "1f33c798-34fc-43e6-8194-af259c5896fd", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.093Z", + "updatedAt": "2023-08-11T05:30:51.093Z" + }, + { + "id": "e47dd2ed-a90a-497a-a10e-b8b2e3581137", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.095Z", + "updatedAt": "2023-08-11T05:30:51.095Z" + }, + { + "id": "b331e4cc-f6d1-4ea8-a8a6-ca6b7d5e1417", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "4e208265-326a-4c8f-bcfd-ade4f891b09f", + "encrypted": true + }, + "refresh_token": { + "credential_id": "a88ef077-9fe4-4c13-9be2-5ad9f8581e63", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.100Z", + "updatedAt": "2023-08-11T05:30:51.100Z" + }, + { + "id": "954bf10a-73d9-4f69-8bdf-0343ecb9b914", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "d78c54cb-2c98-4f47-b84a-48b1559d06a6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.108Z", + "updatedAt": "2023-09-08T05:45:17.147Z" + }, + { + "id": "5dd687e3-f975-40ba-a09c-5c38207cec2a", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "046fbaa7-1e06-4272-a199-ecac4e8d3652", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.112Z", + "updatedAt": "2023-08-11T05:30:51.112Z" + }, + { + "id": "dd1e77b2-4316-4422-a7db-0757cebd5ce7", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "ruby.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "xocrerjd", + "encrypted": false + }, + "username": { + "value": "xocrerjd", + "encrypted": false + }, + "password": { + "credential_id": "42639ba9-6e81-4dd0-b614-bbb576283aff", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.116Z", + "updatedAt": "2023-08-11T05:30:51.116Z" + }, + { + "id": "12ab2f62-ccf2-4d1c-9c76-6207b5d7c511", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "599802c3-5323-465b-8339-26dbab02c131", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.303Z" + }, + { + "id": "e8a9d1a1-2e9d-4717-8c68-e9c461114ce6", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "0896f5b5-90db-4ec6-8058-ec2c2d2cfc41", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.304Z" + }, + { + "id": "f63bacf8-aa52-4936-b5bf-6cc042c691f9", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "913cdee9-d649-4d0f-a70c-e8054e7ffcc7", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.297Z" + }, + { + "id": "2e0f0d5c-2025-4829-88ce-b7273c9bd21a", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "e07bce03-8500-48b0-b1ff-f4f89d85dfda", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "46e10728-7756-4ff0-aafa-e5c93d8f78fd", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connection_limit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:43.023Z" + }, + { + "id": "1e833a39-b02e-4875-82b6-41cf152a1a1e", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "7fefa8e8-ae6f-4125-a633-7d0a86f0ef34", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "fc132ba2-e883-42bf-9438-aa8662beb474", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "18f07210-2414-4acf-a61e-14335775ee2e", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "5f6c58ad-e405-4078-ad28-0c589bcd3cd5", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "231d0729-4492-4fce-b255-b0da72228478", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "cab55bc1-cc1c-4aa2-8b45-973b422f246f", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "202ecc77-dfc4-4735-a638-1bc7959287bd", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "862bb61e-56c9-4d52-aa7e-4b05c82340a1", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "3eec46f6-0a59-4281-8573-88bc3ff29761", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "7f623dcd-95d1-4881-b732-61e1dd64e02b", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "5993421e-93b9-4974-8b11-c2031b2733d2", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "bcde9950-77ee-417a-88ae-0ebe400e370d", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "fb416dce-f856-477d-a782-b397845d9781", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "097eaeee-321a-49c3-a9ce-25280a107028", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "308e77b5-ce45-4c86-9742-6c7607fed5a1", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.970Z", + "updatedAt": "2023-08-21T13:56:27.970Z" + }, + { + "id": "f03a0824-fcec-4ac6-87b6-4a9840211de6", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.973Z", + "updatedAt": "2023-08-21T13:56:27.973Z" + }, + { + "id": "0af87cd8-ba96-497f-b4bc-d12ebf047ad2", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.975Z", + "updatedAt": "2023-08-21T13:56:27.975Z" + }, + { + "id": "ee60edbf-1eca-43a3-92d8-422ce3fee6a1", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.980Z", + "updatedAt": "2023-08-21T13:56:27.980Z" + }, + { + "id": "c139c723-3f7c-43c0-bf3b-62fc951ce781", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.983Z", + "updatedAt": "2023-08-21T13:56:27.983Z" + }, + { + "id": "43448873-bf13-4c5d-a4e7-651196b9a342", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.985Z", + "updatedAt": "2023-08-21T13:56:27.985Z" + }, + { + "id": "f573eb7d-ac39-4b75-be62-ae7765965959", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.991Z", + "updatedAt": "2023-08-21T13:56:27.991Z" + }, + { + "id": "b0b405ad-9af6-40e9-ad47-d00543b21d5b", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.993Z", + "updatedAt": "2023-08-21T13:56:27.993Z" + }, + { + "id": "81cf7c3b-2b18-4dfb-862d-61ea48c93731", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.995Z", + "updatedAt": "2023-08-21T13:56:27.995Z" + }, + { + "id": "99ffb143-7554-4771-8748-e8e0692c353d", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.999Z", + "updatedAt": "2023-08-21T13:56:27.999Z" + }, + { + "id": "b58b48b1-3df7-4837-957a-8651dfa10495", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:28.002Z", + "updatedAt": "2023-08-21T13:56:28.002Z" + }, + { + "id": "b0823937-7525-441f-bac2-b76c128f4b9a", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:28.004Z", + "updatedAt": "2023-08-21T13:56:28.004Z" + }, + { + "id": "17638875-3f23-418e-8bb2-8a23c6862772", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "6c7010d0-f8e1-43fb-b3b8-2583dfa97f9d", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "245a4b8d-77f8-469e-b32b-d59962d1ae47", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "f744db0b-412d-4dbd-af66-1d3a1eb9a4e1", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2055a89b-a704-405d-a0ef-1b78ccfdb625", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "b2165238-e3ba-4293-a5d9-84e15adc1383", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "71acc523-8faa-41a8-a321-833f71ffb54e", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "e234fc17-4936-4a5c-9fb0-1ce868b8fda8", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "13af9c1c-6e4a-4cc3-aec5-6f725241194e", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "a61c8e71-457e-473b-b7d9-541c8bddf53a", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2496c4bf-eb4b-4c8c-ba0e-3bd7d1b41e31", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "c7771fa2-5315-4e67-ad76-629fa6303bc8", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "824a1517-83c9-4a73-9888-4b1830080aeb", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "d0681729-dd25-4b9b-996f-41975fe920ef", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "8f22a729-62d4-4521-9123-185d35df6a38", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "ef6ae06d-affb-47b6-a5be-440ac2daed1d", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "3b98d4d8-a48d-47ea-90ca-325cf9c98065", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "ee04414f-bcea-4e44-b701-7e0c3eee4678", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "9c7c8855-e71b-47f5-a5fd-7493336c60c4", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "adf7ebf4-0f89-4257-959b-3f96fc835df3", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "aa593377-cec9-4031-a711-103cb8cc4ef5", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "17cbbd55-b2ec-4731-9f32-d47529ff903b", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.254Z" + }, + { + "id": "140ac414-92c7-4b0a-b84e-a315b5f6b5bd", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "b871cb37-8c70-4cef-a625-0d74969071b2", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "af3cbb6f-7d26-4193-8f89-f7fc22fec91a", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "e142d464-2728-4aaa-b497-49252b07e4d9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "c99af3f7-0d85-4de6-8c1d-48d17bcddda9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "dd9719e3-87c9-4a96-843c-1578489663e2", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "5029c51c-f692-40b6-a032-b053f57d4443", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "1a133da3-b024-4897-8630-0ece1464b567", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.234Z", + "updatedAt": "2023-08-28T07:47:13.234Z" + }, + { + "id": "2cd268e5-7c36-4060-bc24-7ab82838266d", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "025d6ef6-cfdd-4d6d-8441-5868d10c2299", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "87e46111-efff-4524-be64-49d0510152b8", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "5062282d-ed14-4ff8-b2e2-ad9d8288aeaf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "9440a869-6e05-49bb-84f2-349be5631406", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "b206d8c1-2ac4-4586-8d62-8a418d12e8bf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "a4bd1a9b-ee08-4f17-b06d-56fa70c16fd0", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "467f2e41-9f98-4292-8777-242d8f1e7c75", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "0349de56-09bb-456a-9cf3-f2c956bef552", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "user_database", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "3a47e3ba-4340-451c-a047-b7f2fa8520bd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "4a4c3c21-d3ef-4c1f-a50e-a4c15424dc15", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "677a91dc-4373-4e98-b840-95ec5834597b", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "c3ebadb7-d5bd-4077-bbfc-cfce8335d1fa", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "9e07557c-a502-40d3-aaff-6e58f4be04cf", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "1e38a3cd-d349-4819-98e4-578fd7cb70e2", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "f84c4b0f-7801-4c8e-8ac6-42056d13c9cd", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "0339a258-570a-40cc-9bef-3ef4ad58d8cb", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "4ea736e5-5059-42f8-9ba7-2915c2d98c8d", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "2c58a954-1de0-489d-bfc2-595ed5ea523c", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "e6ff42b5-bbe1-4dbf-b5bf-2b2d88aa23c8", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "466513d1-128c-441b-9103-3d538f334dfc", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "307d6ffc-c0a6-4028-be4c-d78e7046a93a", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "4a31dd03-0da1-48b6-abd9-8e4360c33aa6", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "ecac8c08-1ba1-4780-bf2c-f57cad1f67b2", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "5018c012-11c3-47c0-b2f7-44e35570ce45", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "0a43d696-39bc-41ac-a2ae-ca008482f198", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.899Z" + }, + { + "id": "995e8fe7-c094-4382-a525-49b50b600e3e", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "32135ca5-91a6-42ba-ac2a-11a66d970f6d", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.898Z" + }, + { + "id": "7fb4953a-64fc-442e-9896-687865020ecc", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "f5e67572-5937-4662-b1bb-570c43387028", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T09:44:58.901Z" + }, + { + "id": "555229cf-1ced-4625-bb08-f1d9dc725141", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "cdae49ab-72be-4e14-9b64-5d180e1e8567", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "3e5d8554-d032-470b-8153-a4f2747a9d3e", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "52893971-c1a2-4d81-b95c-9a81de6127e5", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "8ed63dbc-22a8-4baa-9f23-638ea088f650", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "ca4e9c9e-c0c9-43b1-9f44-93a19c0821c3", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "bdde232b-4363-478a-ab0b-7ade4a4af616", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "6772e351-893e-413a-a249-02a1604062ef", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "3239421c-5716-4d0f-aad0-44a2c3d3da09", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "f31ee1d7-8396-4fb6-8d07-7c5894b7cbac", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "00e8a108-1284-4a5f-8d0b-159871c5435f", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "dafc2e2a-f62c-482f-829a-b257debf0017", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "c3f0693e-c422-4629-b52d-bbff1fe8e141", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "api_key": { + "credential_id": "4dd17ec9-4107-4018-812c-2c89e1aa5a4c", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.676Z" + }, + { + "id": "61cdc365-6c81-465f-bcbe-938be0bd0e78", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "api_key": { + "credential_id": "157e86ee-8876-4c40-8b33-2b232a0e4479", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.678Z" + }, + { + "id": "cde99d0e-572c-428d-9d9d-3f1302eb1060", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "api_key": { + "credential_id": "88db6f8c-e0a9-45c6-a929-29f0dac8d907", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.665Z" + }, + { + "id": "080e370c-b767-4e8c-b06f-f574f847db9a", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "fb390b10-2760-4c23-acff-50af3bc50063", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "dec7dacb-a6e7-47c7-bb1a-ad7eaf987019", + "encrypted": true + }, + "bearer_token": { + "credential_id": "e5a3f2e7-7ef8-4365-988c-fcd016d5bfa3", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.533Z" + }, + { + "id": "746982f2-cbd0-4f5b-84b3-7aefa7ad9eb8", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "68e8cad0-d2f9-49af-93bc-9a4701e809b1", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b8bedcac-c9d2-4f55-b216-b1dbd48e9dde", + "encrypted": true + }, + "bearer_token": { + "credential_id": "cac95640-d5a7-467b-8f81-9e2387eb8789", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.549Z" + }, + { + "id": "41cafd8f-2f88-463a-bfb0-ea85a737c46e", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "b4cc22dc-06aa-41dc-9d60-bf09eee7af8c", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "5ec07818-521c-48fb-91d9-c6e2d0b09bdc", + "encrypted": true + }, + "bearer_token": { + "credential_id": "36fc5283-190e-4577-8986-074bd777d2ae", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.556Z" + }, + { + "id": "1fb71fef-54ca-48d4-a261-9080d6d90ca1", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "df5cc284-9a76-409b-a0d9-cb644ff98457", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.397Z" + }, + { + "id": "3e6a4aca-c360-4de2-b0f0-c7c1b30de95b", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "6e545171-b88c-4168-86d4-34344a4656a3", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.402Z" + }, + { + "id": "3c0e1b76-6e28-43dc-ae38-ad164f22a5e5", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "3a81117d-b5a9-4b1e-b826-3225234d54e1", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.403Z" + }, + { + "id": "39877a2d-f1e4-4f26-9c49-d90cc74190e2", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.875Z", + "updatedAt": "2023-09-11T18:11:00.875Z" + }, + { + "id": "833c969c-815d-48ef-a754-9d6718cbe4f8", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.879Z", + "updatedAt": "2023-09-11T18:11:00.879Z" + }, + { + "id": "44b5685c-8ec7-4f1c-bd6c-c8447ae85a27", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.881Z", + "updatedAt": "2023-09-11T18:11:00.881Z" + }, + { + "id": "cb7f0613-591f-4fde-b5b0-406e01dc3dd6", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.885Z", + "updatedAt": "2023-09-11T18:11:00.885Z" + }, + { + "id": "586714d4-695b-4ae6-a42d-c001ecf6463a", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.888Z", + "updatedAt": "2023-09-11T18:11:00.888Z" + }, + { + "id": "e129dcee-2b51-402d-8e30-bdfba1755520", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.890Z", + "updatedAt": "2023-09-11T18:11:00.890Z" + }, + { + "id": "e4d11fac-5bbc-4988-b737-b2da7a3104c3", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.893Z", + "updatedAt": "2023-09-11T18:11:00.893Z" + }, + { + "id": "5a650bc5-6bfe-4871-8394-0d33b6073c5b", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.895Z", + "updatedAt": "2023-09-11T18:11:00.895Z" + }, + { + "id": "75a7c301-3b1f-44f6-b39e-05471844374f", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.897Z", + "updatedAt": "2023-09-11T18:11:00.897Z" + }, + { + "id": "589eead6-40c6-48d9-afe2-d7ed3b444a28", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.901Z", + "updatedAt": "2023-09-11T18:11:00.901Z" + }, + { + "id": "51968dcb-089c-43ae-9556-669456135607", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.903Z", + "updatedAt": "2023-09-11T18:11:00.903Z" + }, + { + "id": "2c3d0b2f-9f39-40df-9f41-dabedb0b9492", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.905Z", + "updatedAt": "2023-09-11T18:11:00.905Z" + }, + { + "id": "d6148b7c-2128-4811-a57a-2330f8209c49", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.911Z", + "updatedAt": "2023-09-11T18:11:00.911Z" + }, + { + "id": "8f230473-a489-4d9a-8f28-0e1fdc446edf", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.914Z", + "updatedAt": "2023-09-11T18:11:00.914Z" + }, + { + "id": "a72c4f12-6497-4196-a766-c2dd1470320f", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.916Z", + "updatedAt": "2023-09-11T18:11:00.916Z" + }, + { + "id": "49abc85e-8b91-4ea4-aa10-b7ee18c627fa", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b0460900-6a0d-4798-b107-3713a887f0b4", + "encrypted": true + }, + "bearer_token": { + "credential_id": "0c77121e-5cd0-4b7b-b02f-1b5074df0341", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e3246e5a-a58e-4599-b70a-fe1859a27e18", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.635Z" + }, + { + "id": "aaa2f6eb-08b9-41e3-9ce1-9cab650eece9", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9b5b8b8b-8ff4-4f8d-b5d1-bbb23c706052", + "encrypted": true + }, + "bearer_token": { + "credential_id": "7bf0b7f4-e659-46c7-8cd9-05e0c3393c73", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "a3a6813e-227c-4cab-b513-eea0b3ce4a3c", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.645Z" + }, + { + "id": "6421f2c0-bc11-4a6b-8cba-87249c888e7d", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7584ee6e-06b2-4ff5-a66f-724e169e5e3d", + "encrypted": true + }, + "bearer_token": { + "credential_id": "aba34fdd-d13e-45ab-8fad-2857c82b3fbb", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "41e67acb-ef8e-4063-b5c5-0484997aa45e", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.646Z" + }, + { + "id": "6aaeccbd-6817-4d57-be9a-38292d84dba6", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "8be25480-f672-4392-b0f0-49d3671c37bc", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c35da044-64a1-46cb-be8c-1a584ee843f9", + "encrypted": true + }, + "bearer_token": { + "credential_id": "16765afc-6cf7-40f9-9c96-2f76a4049e3a", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.267Z" + }, + { + "id": "349ccd27-d0c2-4a2c-8f9d-c25c828b499e", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e54d8e8b-4754-42e4-b443-8e3fbc4c41ed", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "0a89973a-6612-4e8a-85be-04737a01c475", + "encrypted": true + }, + "bearer_token": { + "credential_id": "b4def6fe-6194-4fc7-a1aa-c7d5112c66bf", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.265Z" + }, + { + "id": "26a69562-bcb4-49e8-a6c7-8277efd9cf93", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "76e0ebc2-0c89-4c92-82d6-60b32daa0ef4", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e8ba03f7-85d0-4209-a04e-df6541f3b8c8", + "encrypted": true + }, + "bearer_token": { + "credential_id": "c93ec91b-8f13-4027-a7b8-fd1d85fd2ede", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [["", ""]], + "encrypted": false + }, + "custom_query_params": { + "value": [["", ""]], + "encrypted": false + }, + "custom_auth_params": { + "value": [["", ""]], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [["", ""]], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.253Z" + }, + { + "id": "79785d32-3918-4fa5-8ffb-27a38e28fc88", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "54e35441-2b26-4f25-b2a9-29a6ecee2c4f", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "d5b84d8f-fa2a-4571-b601-bb0cfd528db6", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "c348f79b-cc81-42a5-9f78-4712159b7fd1", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "ec909322-ea53-48ce-aa77-19d39ad28e8b", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "9c60f1aa-48e0-4fc9-86fa-ec28ba300680", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "8d16cc16-1c17-44c1-b6e8-6679425e19e8", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "9db09200-91d3-4bf4-b4a4-1e5acdbe06d3", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "30dfbc76-5010-462c-aab9-337587984e94", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "825533f2-ca52-4ca1-9e68-89d0fc4d11e5", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "41dd15b1-8c32-4ac9-9c39-a94b921b514e", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "7a9c3ee0-b02d-4fef-8e05-cd3c5ca827cf", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "255c07a2-6573-4c92-b3af-d3ce3ef42f5f", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "a4b8c404-a080-4329-b50f-ec8942ea7f7e", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.625Z" + }, + { + "id": "049bf73b-094b-41b2-87f3-696f38b505b9", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "localhost", + "encrypted": false + }, + "username": { + "value": "localhost", + "encrypted": false + }, + "password": { + "credential_id": "c83dcbbe-2e56-40c4-a2ae-6600159bff6b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:53.756Z" + }, + { + "id": "0b675807-8cb6-44cd-ba56-17b87cd8a493", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "63c2b598-8a90-4450-90f9-d47b0a5c85f6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.631Z" + }, + { + "id": "a63f7287-37f6-414e-8889-b462eb0b57be", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "597074ae-9800-4409-91c3-1408410d1c6c", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "928a1535-6acc-48bf-afc7-1e3ae2244a33", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "6ff92d12-603a-4549-8b9e-9ac1b92e83f5", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "6ab109a4-6f83-4b14-883e-c8c05f46f9c9", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "d2674a10-11c2-4a28-81db-1c08cac1fbe0", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "b27b0ee7-4fdb-4d8e-9d81-2289498a64f0", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "7a2964c8-03a4-48a1-99d4-7a25b61462f3", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "0e5dcd88-49a1-4d7f-8f10-34d41bed45a5", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "2448c268-6dfd-43a6-9555-f68df51b45b6", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "3fcf6c9b-bbf8-45f9-8840-87bddcdddc0f", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "15074c6a-c8f5-409e-9f9b-349152bd5f66", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "b2c64855-286f-47f5-b790-9fe2cb1e6695", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "ed1aa47d-55b8-42d4-9469-82d8f92ad4d2", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "e4cdf417-b76f-4123-ae6c-41f9667f5669", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "3e89cd97-66b5-4ea7-b14f-e590b12e19c4", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "480a763d-7773-43ef-83df-1124a96b1cab", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.635Z" + }, + { + "id": "57b35a07-ae7f-46f1-91ed-d34d0273e5bc", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "inventory_management", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "93da8ad2-d11c-42c6-ba7f-ac0c7be23251", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-22T10:27:25.819Z" + }, + { + "id": "288a7b6d-b625-4005-93dc-dcd7a8653b24", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "cc151dc1-999e-42b2-93d0-072fa91be3b2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.643Z" + }, + { + "id": "83fcf4c6-ec28-4d1b-8bc9-9a4df406b9d1", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "1da83b26-ecef-44f4-b8ca-50e4641656d2", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "840bc336-5bad-4442-9305-3355bf5940f4", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "200d45fe-aad3-4add-b4ba-751e54521f14", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "63a0cbae-327e-4ed5-b76f-5842818e84c6", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "cd7e82ec-b280-4a94-9850-159e35af72b3", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "86d931b7-edf3-4b21-baaf-b150f8dc4fc0", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e880b9ea-a2b2-417f-a164-f1d834506323", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e91edce3-9ecb-4026-a47a-591a39465333", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "8163b518-d9ef-4714-b33f-8537c0a48903", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "e3ef7c7b-fed2-44c0-87b2-55283ac90e75", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "8b5a287f-08dd-42c1-9179-0a55cd4f7310", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "6c514b05-e8d2-4d81-ac64-61d4d09191a4", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "7b54ce24-7ca8-414a-a72c-d50950eb3949", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "4badeb69-2c38-4c4e-80f3-fc3f58ec2223", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "220eb433-49a8-4d49-84c4-f285536e3868", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "ebfcf35f-2955-4212-967f-cebcddf16c8a", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "adef1faa-4651-478f-a834-1934b4c61a99", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "6dbc8c78-986e-4079-bbfb-ce4a200b4bf5", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "7da7ea08-cf60-4404-9031-c83776671656", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "0faaacfa-d389-4e66-ac7f-8c93afc5a13e", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "8e7ef01c-7c06-47a4-8db2-e45357b24ba1", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "e345b259-fce4-4b2f-8b19-719427b4eb31", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "019dd8be-5efd-4428-9bee-a389486c5a32", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "b9b7047b-000c-47cf-bd68-7d6dfbdea44b", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "04c7d955-12a3-451f-a016-c597724f8cd9", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "5a4cc34a-da23-4a08-badd-bb26130a5913", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "8fee3e7e-7d30-4fe2-9342-ddb09ad7b6e1", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "3c9adfd7-1064-4999-acb6-b94c5196cc72", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "4f7e0db0-c05a-4a5b-a99b-fdb170901049", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "106e6bb8-7d31-4028-a436-2db539aa3ec1", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "31785b20-89f8-4de5-bf54-1debc1ca261a", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.058Z", + "updatedAt": "2023-09-26T04:59:51.058Z" + }, + { + "id": "6ad412e2-170b-42a5-895f-f841ec47e3c5", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "0cc48002-fd62-4b80-a02a-a04329030e7d", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.063Z", + "updatedAt": "2023-09-27T06:59:36.470Z" + }, + { + "id": "907f19fe-d074-4cd7-adb5-5cb3353d855c", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "4175f457-72d6-4838-b23a-895c9f1479cf", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.068Z", + "updatedAt": "2023-09-26T04:59:51.068Z" + }, + { + "id": "b3f1ca23-5dc4-441a-9ccf-608db6d746e7", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "d85fe433-175b-42b6-afda-4eacc1398a22", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "78b3f9e0-8124-4d37-8da3-788d35f9f4d3", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "fc2da525-f539-454c-824a-8fda6127e9e0", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "d3181e60-88eb-4ed2-8234-877abb1cca21", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "3e8cbe50-7a5b-44ba-b366-b80ffee166ff", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "e05b1995-20c8-4f02-a62c-bb2478baf4ef", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "2358c3c3-e4d1-400f-9069-20186bbdb0a7", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "0899c00c-8a3b-4d41-937c-1925c8958297", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "43b65b50-ddd3-4cdc-8579-b55a404717be", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "65c6b204-5842-490b-9ec6-81e52146ab69", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "08f74263-9282-4214-bb80-fc71196cd104", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "2e84b8b5-e7ae-41ca-86bb-4a0d75e3cdbd", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "035e7958-ac6f-4873-9df1-8c487eeb4d8f", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "931c6a61-e93e-42f8-88d0-3069772a01e4", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "edab30b9-76cf-46b8-818f-1f34ef222a77", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "df31bda5-d452-4446-adb6-ae4292cfd6c9", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "209858f9-b486-4105-ab34-75efb3b3faed", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "e3415f04-a642-4505-b50c-7ea030a8eaeb", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "aeba310e-6507-4d43-82eb-ba8861067b36", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "230ba931-70ab-44e2-b44a-2f60c96c5361", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "f874078b-2a8a-4fe8-b7f8-fdefa9c8beaf", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.905Z", + "updatedAt": "2023-09-27T16:45:57.905Z" + }, + { + "id": "2bfb1a7c-823e-4359-b049-4a61db34b911", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "5bb80934-9d75-49cc-a9a3-3e8bb3b90c34", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "d3532cce-f05c-4157-b482-d4632ef19c0c", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "35.193.152.84", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "72f1b57e-ed9d-4eb1-b628-d35d0d6bec78", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-10-03T13:27:33.903Z" + }, + { + "id": "7078020a-7967-4597-82fc-a31f0b1cf21e", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "991135d2-7671-45ed-b316-63f03b7a34f0", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.615Z" + }, + { + "id": "a8648171-928a-48ef-ac7c-2d1cb8bbae6d", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7fd0ea56-a4c5-421c-ac04-c707fd30037a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.609Z" + }, + { + "id": "5751c539-28cc-4065-b4f2-f321bbe3ee23", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e97c34c1-13bc-4b5f-b240-cc7acc59541a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.799Z" + }, + { + "id": "a765cdaa-0387-461c-bdaa-63b5353028c0", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "8b910d98-de4b-4e9a-bd11-c9004aa81e48", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.805Z" + }, + { + "id": "bf2ce691-b6e1-442b-a649-793d30a9db60", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c4cb2ddd-2504-4457-971e-18f96940393f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.806Z" + }, + { + "id": "7ab8dd61-1478-4003-b7e3-c9546edcd991", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1ad53f8b-ec0e-4492-ac40-24185178d044", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.650Z" + }, + { + "id": "5ea174ed-1189-4646-b93a-05e4ced753b9", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "d9ad9526-6249-4615-b7c6-e0e0f6425658", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:36:58.100Z" + }, + { + "id": "512396b8-88c7-4964-a57d-0236373d14fd", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c3673de1-1377-4752-b9a9-743ac1ec76a5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.642Z" + }, + { + "id": "34d29e8e-3494-4281-9a91-b7f6806002c0", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "5c4588ab-8993-455a-b005-6554c3873b8c", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "a2d691b8-0378-4f0a-ade6-f24c6158578d", + "dataSourceId": "cfacdf45-5c17-45d6-9dfd-2ae633a41f1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.617Z", + "updatedAt": "2023-10-10T09:20:25.617Z" + }, + { + "id": "159e5e0b-3e3d-4306-a6b2-ff9b052172c4", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "f68516ae-87a5-421a-b396-5e7510c16763", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "56da9e7f-bed6-47de-ac08-c0d733f93b5d", + "dataSourceId": "14287aff-a563-40c8-ba91-158bc50ebc0b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.626Z", + "updatedAt": "2023-10-10T09:20:25.626Z" + }, + { + "id": "412ce914-c49e-4a81-bcfe-51077d6d17a2", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "227b7d0e-bf04-4481-b137-ad1b23f9ac77", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "bc62f0c9-0d44-47ac-a25f-41459e0d5fc4", + "dataSourceId": "f44d323c-d4f7-47e7-8f9f-de832bd5a56c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.635Z", + "updatedAt": "2023-10-10T09:20:25.635Z" + }, + { + "id": "cbd1819f-a223-4207-bea6-d6576f57ea2c", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "a4a1cf81-f577-423e-9544-4ff7796cb289", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "007bd34a-9123-4936-933c-2433c6edd899", + "dataSourceId": "cd594693-c608-41d2-be42-fb02a4ce5b75", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.646Z", + "updatedAt": "2023-10-10T09:20:25.646Z" + }, + { + "id": "d5073421-b5c5-47b5-b4bc-3cad17267c81", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "ac8cc42f-2ada-41f7-b93f-01c64fb3bde6", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "9b773b6b-ea5b-4b4b-b01e-b4dc90142c94", + "dataSourceId": "cea34662-ae70-4640-9a7c-7ee208bd3e23", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:20:25.654Z", + "updatedAt": "2023-10-10T09:20:25.654Z" + }, + { + "id": "85af5670-1dbe-4e33-9e71-38e3d63f785f", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "323825dd-363e-4e0d-93ff-b7c26ebff3a1", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "51c5eee4-0af2-4c2b-b711-970b5ae74485", + "dataSourceId": "57fc215a-1b61-4867-865b-a669d7abe3f4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.416Z", + "updatedAt": "2023-10-10T09:21:50.416Z" + }, + { + "id": "86a9a4fd-bf05-4770-be53-b8cf2d00c9e6", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "a3d42ef6-7f48-45ad-90a6-c7980d48c12a", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "14b82dee-24eb-4a94-8559-0d9ed6b63d77", + "dataSourceId": "a1a7d53b-9ae0-432f-b5b5-aff22e14b8d5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.429Z", + "updatedAt": "2023-10-10T09:21:50.429Z" + }, + { + "id": "703288c6-0a61-4744-a16e-687aea9f9a4c", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "76971c88-7f60-4297-a6c9-e3666c7b6758", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "b9220430-0410-4bc6-bfed-605f0f92a2ea", + "dataSourceId": "625092db-bed6-4f36-8014-6feb4fa98e0f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.438Z", + "updatedAt": "2023-10-10T09:21:50.438Z" + }, + { + "id": "d0692d6c-6b12-4e7c-9cce-64039fcb5ca6", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "bb66eed0-6019-43cf-bb27-a3db15ebee93", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "feec231b-a32a-4dba-9ce3-41fc172280d2", + "dataSourceId": "b38e29a2-3a9a-4595-b760-7628f0c4f136", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.446Z", + "updatedAt": "2023-10-10T09:21:50.446Z" + }, + { + "id": "a14b567d-5d54-49be-89b4-91b2738c1ca2", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "e4213486-4c50-4874-b98b-299b7f94ab65", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "b5583a48-33ea-48bd-83b5-21ce845a0875", + "dataSourceId": "ee56f08c-3495-46df-8d4b-a7b8dd796d4c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:21:50.463Z", + "updatedAt": "2023-10-10T09:21:50.463Z" + }, + { + "id": "7f90955a-1301-4773-b110-5970fc71038c", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "872c8f9a-636a-4e22-8386-a544ad4020b9", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.617Z", + "updatedAt": "2023-10-10T09:21:50.617Z" + }, + { + "id": "79a2ecaf-ad5a-4aab-a44c-cb2bc99a8835", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "7fb74b90-480f-4da5-9a34-f7087f8483ab", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.622Z", + "updatedAt": "2023-10-10T09:21:50.622Z" + }, + { + "id": "babdb5a2-4dc2-4a39-909e-1e0b547ca030", + "dataSourceId": "e41f64c4-cdc5-4d76-9705-07604bd36832", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "c896ddb1-70e1-4b57-9739-b7e4069e1262", + "encrypted": true + } + }, + "createdAt": "2023-10-10T09:21:50.626Z", + "updatedAt": "2023-10-10T09:21:50.626Z" + }, + { + "id": "34f7f3f9-cab0-4e65-bc88-ed4a2e7fbfa1", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "6f2b7870-2f24-435f-badc-eba159c0edc0", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "6ba822d7-b917-49e9-a6ff-9a042fc87c08", + "dataSourceId": "34beecd4-888a-46e7-8c25-b7ee63294662", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:57.988Z", + "updatedAt": "2023-10-10T09:22:57.988Z" + }, + { + "id": "c67db9b9-9cd7-4daf-9bdd-513229ea2ae8", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "000997b8-464f-40e8-8f3a-4510ae73fbfe", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "cb19358c-f4b9-4ae0-9ff1-ab5f037f4e7a", + "dataSourceId": "b8acbf3b-7863-4dba-8470-1225262efe3e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.001Z", + "updatedAt": "2023-10-10T09:22:58.001Z" + }, + { + "id": "26cd77c6-6387-48ca-92b6-f943a90da690", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "54208746-afd8-4d2d-9fe1-5d2f064c8a07", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "44130f59-3942-4b23-b117-13800ac78881", + "dataSourceId": "97e8a74f-faa6-42db-aad3-a2ff030b8b46", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.009Z", + "updatedAt": "2023-10-10T09:22:58.009Z" + }, + { + "id": "18344317-96be-41f3-a4ce-6f769f104323", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "013ef1c8-af8a-4019-b68f-f9a1d2ef7e64", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "66bf88db-3432-455c-9a5e-d5b59378858f", + "dataSourceId": "8797fd4b-0832-4d1a-8885-470247b4d980", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.018Z", + "updatedAt": "2023-10-10T09:22:58.018Z" + }, + { + "id": "78812b07-46d1-42f2-828d-51d0a1546358", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "ea038e59-5a5e-40b6-b09a-2356ee1a5e21", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + }, + { + "id": "998dc168-7f06-45fe-890e-753fe2788326", + "dataSourceId": "a15ab6c2-fa68-4a59-b8bf-5db6d8e141fb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-10-10T09:22:58.025Z", + "updatedAt": "2023-10-10T09:22:58.025Z" + } + ], + "schemaDetails": { + "multiPages": true, + "multiEnv": true, + "globalDataSources": true + } + } + } + } + ], + "tooljet_version": "2.19.2-ee2.7.0-cloud2.0.9" +} diff --git a/server/templates/sales-analytics-dashboard/manifest.json b/server/templates/sales-analytics-dashboard/manifest.json new file mode 100644 index 0000000000..1aa0eab665 --- /dev/null +++ b/server/templates/sales-analytics-dashboard/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "Sales analytics dashboard", + "description": "The Sales Analytics Dashboard template offers comprehensive sales monitoring and insights with four key sections: Main Dashboard (critical metrics), Orders (order details), Customers (demographics & history), and Products (product performance).", + "widgets": ["Table", "Chart"], + "sources": [ + { + "name": "Tooljet Database", + "id": "tooljetdb" + } + ], + "id": "sales-analytics-dashboard", + "category": "sales" +} diff --git a/server/templates/supply-chain-management/definition.json b/server/templates/supply-chain-management/definition.json new file mode 100644 index 0000000000..7e6b76db84 --- /dev/null +++ b/server/templates/supply-chain-management/definition.json @@ -0,0 +1,111567 @@ +{ + "tooljet_database": [ + { + "id": "3f453f43-f215-4e20-ae03-16c67cbbad8d", + "table_name": "supply_chain_products", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"3f453f43-f215-4e20-ae03-16c67cbbad8d_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "product_name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "quantity", + "data_type": "integer", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "status", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "price", + "data_type": "double precision", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 53, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "description", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "category", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "image_url", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + }, + { + "id": "2c85cdeb-a1c7-4287-b365-0ececf80876d", + "table_name": "supply_chain_orders", + "schema": { + "columns": [ + { + "column_name": "id", + "data_type": "integer", + "column_default": "nextval('\"2c85cdeb-a1c7-4287-b365-0ececf80876d_id_seq\"'::regclass)", + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "NO", + "constraint_type": "PRIMARY KEY", + "keytype": "PRIMARY KEY" + }, + { + "column_name": "product_id", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "quantity", + "data_type": "integer", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 32, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "customer_name", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "phone_number", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "address", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "comments", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "order_date", + "data_type": "character varying", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "total_price", + "data_type": "double precision", + "column_default": null, + "character_maximum_length": null, + "numeric_precision": 53, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + }, + { + "column_name": "status", + "data_type": "character varying", + "column_default": "order_placed", + "character_maximum_length": null, + "numeric_precision": null, + "is_nullable": "YES", + "constraint_type": null, + "keytype": "" + } + ] + } + } + ], + "app": [ + { + "definition": { + "appV2": { + "id": "d328c6b4-b2ab-49c5-ae0c-6e35cb444f61", + "type": "front-end", + "name": "Supply Chain Management", + "slug": "d328c6b4-b2ab-49c5-ae0c-6e35cb444f61", + "isPublic": false, + "isMaintenanceOn": false, + "icon": "layers", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "currentVersionId": null, + "userId": "4d572ebe-cd2f-4668-9219-c6e8c1fa2cb1", + "createdAt": "2023-08-11T05:25:31.666Z", + "updatedAt": "2023-10-10T08:28:50.068Z", + "editingVersion": { + "id": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "231b8e69-78b0-4463-8a50-06efbe933c4b", + "pages": { + "231b8e69-78b0-4463-8a50-06efbe933c4b": { + "components": { + "29584950-1289-47c1-8306-df17b8777f01": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text3", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 20, + "left": 4.651159429948642, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "0b9b018f-ac46-479c-97c0-320e1c138c67": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order no." + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 220, + "left": 9.302327558306544, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "d340bcf7-6e2a-44e8-962c-c458c6103fc6": { + "component": { + "properties": { + "data": { + "type": "code", + "displayName": "Tags", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "title": { + "type": "string" + }, + "color": { + "type": "string" + }, + "textColor": { + "type": "string" + } + } + } + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "data": { + "value": "{{ [ \n\t\t{ title: 'Delivered', color: '#2fb344', textColor: '#fff' } ] }}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "tags1", + "displayName": "Tags", + "description": "Content can be shown as tags", + "component": "Tags", + "defaultSize": { + "width": 8, + "height": 30 + }, + "exposedVariables": {} + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 20, + "left": 83.72093774482069, + "width": 3.9918377923171615, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "bb3d4f1c-4f07-43ae-91e7-ecd1cbf123eb": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order date" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 150, + "left": 9.30232558139535, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "9637e898-33b7-46fe-9757-48e6aa270fd2": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Billing address" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 280, + "left": 30.232566047179667, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "0fcdf89b-f1ab-4017-a633-124cc0d4277d": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipping address" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 200, + "left": 48.83720930232558, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "eac8ec41-01ce-479c-b18c-b03b68612c1e": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 300, + "left": 55.8139534883721, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "ab0b2b1d-204f-4c9f-b8c1-4fa47e91c004": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total Amount" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 139.9999885559082, + "left": 69.77529803286411, + "width": 10.000842132538706, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "a7ebf938-3a7b-46d4-8ce6-a31bd0fbd218": { + "id": "a7ebf938-3a7b-46d4-8ce6-a31bd0fbd218", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "My Dashboard" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 9.302325924067027, + "width": 12, + "height": 80 + } + } + }, + "bc32cea9-1351-417c-8fff-48e630e5d3be": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#F8F9FA", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 140, + "left": 9.30232558139535, + "width": 21, + "height": 660 + } + }, + "withDefaultChildren": false + }, + "3c045a1d-e3b8-41ea-bab1-dd5390068536": { + "id": "3c045a1d-e3b8-41ea-bab1-dd5390068536", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Sales Insights" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text13", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 6.976744186046511, + "width": 36, + "height": 40 + } + }, + "parent": "bc32cea9-1351-417c-8fff-48e630e5d3be" + }, + "2ab610aa-2c48-46a9-8f33-b9ae93af0a13": { + "id": "2ab610aa-2c48-46a9-8f33-b9ae93af0a13", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{queries.getOrderStats.data.monthlySalesDiffPercentage >= 0 ? \"#067A6F\" : \"#BD2100\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Sale this month" + }, + "primaryValue": { + "value": "{{queries?.getOrderStats?.data?.currMonthSales ?? 0}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{queries?.getOrderStats?.data?.monthlySalesDiffPercentage ?? 0}}%" + }, + "secondarySignDisplay": { + "value": "{{queries.getOrderStats.data.monthlySalesDiffPercentage >= 0 ? \"positive\" : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics1", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 70, + "left": 7.750649728745978, + "width": 17, + "height": 160 + } + }, + "parent": "bc32cea9-1351-417c-8fff-48e630e5d3be" + }, + "636a7c35-58e7-47cf-8c29-4dbd563066b3": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity in hand" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "d06dcfa6-2693-4ca5-b87b-e01d176332ec", + "layouts": { + "desktop": { + "top": 0, + "left": 4.651102634372967, + "width": 26, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "a5ad1245-f2d0-4360-af79-df7c381de074": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "d06dcfa6-2693-4ca5-b87b-e01d176332ec", + "layouts": { + "desktop": { + "top": 0, + "left": 67.44186332462516, + "width": 3.0000000000000004, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "4d4aa614-829d-4b36-b8c7-b25d6b5976b4": { + "id": "4d4aa614-829d-4b36-b8c7-b25d6b5976b4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "55" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 76.74418604651163, + "width": 7.000000000000001, + "height": 30 + } + }, + "parent": "d06dcfa6-2693-4ca5-b87b-e01d176332ec" + }, + "b6970076-ab67-46c8-883e-e0a23bdf5ffc": { + "id": "b6970076-ab67-46c8-883e-e0a23bdf5ffc", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity to be received" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.8309963851264186, + "width": 27.397061520128858, + "height": 30 + } + }, + "parent": "ecba1eab-077d-4d6b-b2de-cbaaee455922" + }, + "d46a6a08-19e3-4b3d-aa2f-ddc2e04e856f": { + "id": "d46a6a08-19e3-4b3d-aa2f-ddc2e04e856f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider2", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "ecba1eab-077d-4d6b-b2de-cbaaee455922" + }, + "ce6e6ced-eb44-42b0-9e5b-188be6d1ce8a": { + "id": "ce6e6ced-eb44-42b0-9e5b-188be6d1ce8a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "28" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 80.74931115906885, + "width": 3.5439483803196463, + "height": 30 + } + }, + "parent": "ecba1eab-077d-4d6b-b2de-cbaaee455922" + }, + "f9d709a7-b54a-4615-b6df-b366c8774ad4": { + "id": "f9d709a7-b54a-4615-b6df-b366c8774ad4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Low in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.709215606855278, + "width": 18.081644554286207, + "height": 30 + } + }, + "parent": "759092d1-3ec0-4d96-88c9-110c213f89fd" + }, + "a839c3c1-be5d-49dc-a58d-b6dcb50695a0": { + "id": "a839c3c1-be5d-49dc-a58d-b6dcb50695a0", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider3", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "759092d1-3ec0-4d96-88c9-110c213f89fd" + }, + "08ec1334-e0c1-4fa5-844b-54c018c90fad": { + "id": "08ec1334-e0c1-4fa5-844b-54c018c90fad", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": "{{1.5}}" + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "8" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 83.40337009652839, + "width": 3.5439483803196463, + "height": 30 + } + }, + "parent": "759092d1-3ec0-4d96-88c9-110c213f89fd" + }, + "bdbf2bef-d89e-4669-b166-197778481b10": { + "id": "bdbf2bef-d89e-4669-b166-197778481b10", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Out of stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.709217866491207, + "width": 18.081644554286207, + "height": 30 + } + }, + "parent": "b3dd6ac9-1304-43a7-9c44-f5acc1c4482d" + }, + "f3f12ad6-a322-438f-9033-7d8317e48f5c": { + "id": "f3f12ad6-a322-438f-9033-7d8317e48f5c", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider4", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "b3dd6ac9-1304-43a7-9c44-f5acc1c4482d" + }, + "8c5d8b87-a4c1-43d2-84fc-b11a74c44124": { + "id": "8c5d8b87-a4c1-43d2-84fc-b11a74c44124", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "3" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 82.32660505353441, + "width": 3.9673764242215848, + "height": 30 + } + }, + "parent": "b3dd6ac9-1304-43a7-9c44-f5acc1c4482d" + }, + "a10e1f2f-27e0-41d2-a218-69726a42ef9f": { + "id": "a10e1f2f-27e0-41d2-a218-69726a42ef9f", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "25" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "" + }, + "markerColor": { + "value": "#32b9abff" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{false}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStatsChartData.isLoading}}", + "fxActive": true + }, + "jsonDescription": { + "value": "{\n \"data\": [\n {\n \"x\": [\n \"Jan\",\n \"Feb\",\n \"Mar\"\n ],\n \"y\": [\n 100,\n 80,\n 40\n ],\n \"type\": \"bar\"\n }\n ]\n }" + }, + "type": { + "value": "line" + }, + "data": { + "value": "{{queries?.getOrderStatsChartData?.data??[]}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart1", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "layouts": { + "desktop": { + "top": 250, + "left": 7.436242903318993, + "width": 37, + "height": 370 + } + }, + "parent": "bc32cea9-1351-417c-8fff-48e630e5d3be" + }, + "29a9fd98-e5dc-4df1-901f-7e0d8e6cbfd8": { + "id": "29a9fd98-e5dc-4df1-901f-7e0d8e6cbfd8", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{queries.getOrderStats.data.yearlySalesDiffPercentage >= 0 ? \"#067A6F\" : \"#BD2100\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Sale this year" + }, + "primaryValue": { + "value": "{{queries?.getOrderStats?.data?.currYearSales ?? 0}}" + }, + "secondaryValueLabel": { + "value": "Last year" + }, + "secondaryValue": { + "value": "{{queries?.getOrderStats?.data?.yearlySalesDiffPercentage ?? 0}}%" + }, + "secondarySignDisplay": { + "value": "{{queries.getOrderStats.data.yearlySalesDiffPercentage >= 0 ? \"positive\" : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics2", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 70, + "left": 51.0615590762841, + "width": 18, + "height": 160 + } + }, + "parent": "bc32cea9-1351-417c-8fff-48e630e5d3be" + }, + "2ced482a-b79f-4aa4-99a1-eddccc3224df": { + "id": "2ced482a-b79f-4aa4-99a1-eddccc3224df", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Orders placed" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.830981507056605, + "width": 27.397061520128858, + "height": 30 + } + }, + "parent": "bde8dec6-404e-4cb7-8541-c22dac506785" + }, + "17030d46-0772-4e23-91d7-089bf2e2eb60": { + "id": "17030d46-0772-4e23-91d7-089bf2e2eb60", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider6", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "bde8dec6-404e-4cb7-8541-c22dac506785" + }, + "c4ba83cd-1eb0-451a-8331-1508af98af08": { + "id": "c4ba83cd-1eb0-451a-8331-1508af98af08", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "28" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 80.74931115906885, + "width": 3.5439483803196463, + "height": 30 + } + }, + "parent": "bde8dec6-404e-4cb7-8541-c22dac506785" + }, + "01ecec83-9430-4c38-a733-cb7141c2fa94": { + "id": "01ecec83-9430-4c38-a733-cb7141c2fa94", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipped" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.7092027364056217, + "width": 18.081644554286207, + "height": 30 + } + }, + "parent": "ac9432ba-a6ef-4eac-b9db-9cd33c80369b" + }, + "162f962a-70f0-468a-a265-50dbccbe01d4": { + "id": "162f962a-70f0-468a-a265-50dbccbe01d4", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider7", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "ac9432ba-a6ef-4eac-b9db-9cd33c80369b" + }, + "0b2c89bf-af06-44b1-8d0a-a03f90376f33": { + "id": "0b2c89bf-af06-44b1-8d0a-a03f90376f33", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "8" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 83.07487059984553, + "width": 3.5439483803196463, + "height": 30 + } + }, + "parent": "ac9432ba-a6ef-4eac-b9db-9cd33c80369b" + }, + "6129de2a-c36c-44cd-bc74-7b04ae2961c5": { + "id": "6129de2a-c36c-44cd-bc74-7b04ae2961c5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Delivered" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.709243197354715, + "width": 18.081644554286207, + "height": 30 + } + }, + "parent": "baa25360-3e77-4411-ad03-1c70bb95c5b9" + }, + "97aba050-1ef5-4b3a-8b38-e2559f6b5f39": { + "id": "97aba050-1ef5-4b3a-8b38-e2559f6b5f39", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider8", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "baa25360-3e77-4411-ad03-1c70bb95c5b9" + }, + "c71a2372-d509-47f1-9377-e761a14e0ed2": { + "id": "c71a2372-d509-47f1-9377-e761a14e0ed2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "3" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 82.32660505353441, + "width": 3.9673764242215848, + "height": 30 + } + }, + "parent": "baa25360-3e77-4411-ad03-1c70bb95c5b9" + }, + "19d85490-0014-40fb-8674-ef9c73aebcb7": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000", + "fxActive": false + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "capitalize" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{(globals?.currentUser?.firstName??\"\") + \" \" + (globals?.currentUser?.lastName??\"\")}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text32", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 39.99999237060547, + "left": 58.13953661715651, + "width": 14.999999999999998, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "49d5612c-7af1-43d6-8a1b-141dc46fb388": { + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "logout", + "message": "Hello world!", + "alertType": "info" + } + ], + "styles": { + "iconColor": { + "value": "#067A6F", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconPower" + } + }, + "general": { + "tooltip": { + "value": "Logout" + } + }, + "exposedVariables": {} + }, + "name": "icon4", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 93.0232558139535, + "width": 2, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ff1ef5b1-e789-4505-bbcc-3c2957c95593": { + "id": "ff1ef5b1-e789-4505-bbcc-3c2957c95593", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffff", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "oblique" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipzy" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text33", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 5.17308808632651, + "width": 35.755014739527255, + "height": 30 + } + }, + "parent": "2e557982-4a1a-42d8-b5a6-442abfb0c79e" + }, + "c7cfdef9-91bb-4fee-97f9-456a387dc299": { + "id": "c7cfdef9-91bb-4fee-97f9-456a387dc299", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon5", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 50, + "left": 29.728489968899588, + "width": 12.853332781041193, + "height": 30 + } + }, + "parent": "2e557982-4a1a-42d8-b5a6-442abfb0c79e" + }, + "25edeadc-4a55-4277-943b-93f9d3889120": { + "id": "25edeadc-4a55-4277-943b-93f9d3889120", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconBoxSeam" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon6", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 30.23256304826526, + "width": 12.853332781041193, + "height": 30 + } + }, + "parent": "2e557982-4a1a-42d8-b5a6-442abfb0c79e" + }, + "a115a54c-5c85-4f3e-85c4-eb1121e2fcd3": { + "id": "a115a54c-5c85-4f3e-85c4-eb1121e2fcd3", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconShoppingCart" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon7", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 130, + "left": 31.958450815081264, + "width": 12.24061987889269, + "height": 30 + } + }, + "parent": "2e557982-4a1a-42d8-b5a6-442abfb0c79e" + }, + "bcacb2e1-d2a7-4195-aa44-8106ab527873": { + "id": "bcacb2e1-d2a7-4195-aa44-8106ab527873", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#067a6fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 110, + "left": 9.30232558139535, + "width": 38, + "height": 10 + } + } + }, + "82753f8c-19a9-4297-a56b-3f880c7e99f2": { + "id": "82753f8c-19a9-4297-a56b-3f880c7e99f2", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#F8F9FA", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container14", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 140, + "left": 60.465110052482935, + "width": 16, + "height": 340 + } + } + }, + "9f86dfbc-ffa3-4f1f-a163-eb1e366cdf49": { + "id": "9f86dfbc-ffa3-4f1f-a163-eb1e366cdf49", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Inventory Summary" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text34", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 6.976744186046511, + "width": 35.99999999999999, + "height": 40 + } + }, + "parent": "82753f8c-19a9-4297-a56b-3f880c7e99f2" + }, + "d33665f3-f958-48a7-8990-b35c2946872f": { + "id": "d33665f3-f958-48a7-8990-b35c2946872f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container15", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 70, + "left": 6.976745661788449, + "width": 35.99999999999999, + "height": 230 + } + }, + "parent": "82753f8c-19a9-4297-a56b-3f880c7e99f2" + }, + "3148984e-ae18-4fec-9815-b42234f380dd": { + "id": "3148984e-ae18-4fec-9815-b42234f380dd", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity in hand" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text35", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651141011224977, + "width": 26.999999999999996, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "d38ad397-addc-4e3b-93fc-d2334424d94e": { + "id": "d38ad397-addc-4e3b-93fc-d2334424d94e", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider9", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 20, + "left": 69.76744186046511, + "width": 3, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "cba724e4-3c91-43d2-82f0-cf5e9ff51c06": { + "id": "cba724e4-3c91-43d2-82f0-cf5e9ff51c06", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text36", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 79.06977368285324, + "width": 7, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "c74e908f-c10d-4ab7-a01c-837533e12aa8": { + "id": "c74e908f-c10d-4ab7-a01c-837533e12aa8", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity to be received" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text37", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 4.651164587745595, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "b5c3c2a1-683c-4a37-aaae-47bf2a284e0f": { + "id": "b5c3c2a1-683c-4a37-aaae-47bf2a284e0f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider10", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 70, + "left": 69.76745250630597, + "width": 3, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "e4fa5fb1-03a0-43f9-a91f-727e8393d4d6": { + "id": "e4fa5fb1-03a0-43f9-a91f-727e8393d4d6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityYetToReceive ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text38", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 79.06976907002613, + "width": 7, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "4196ad82-8199-4f6b-88d3-26ab9f2e3f99": { + "id": "4196ad82-8199-4f6b-88d3-26ab9f2e3f99", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Low in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text39", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 4.651173436538534, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "91a9be9b-038c-411f-bb28-304652a62ac4": { + "id": "91a9be9b-038c-411f-bb28-304652a62ac4", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider11", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 120, + "left": 69.76746599333187, + "width": 3, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "8068b06a-6b92-493d-b9fc-994d3589f0f0": { + "id": "8068b06a-6b92-493d-b9fc-994d3589f0f0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": "{{1.5}}" + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.lowInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text40", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 79.06975455817971, + "width": 7, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "c1c440b8-ce0c-42b8-9d85-755f4523625a": { + "id": "c1c440b8-ce0c-42b8-9d85-755f4523625a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Out of stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text41", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 170, + "left": 4.651157711672741, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "eb4ce0c5-99cf-4a86-880f-5cd95385199b": { + "id": "eb4ce0c5-99cf-4a86-880f-5cd95385199b", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider12", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 170, + "left": 69.76745534749101, + "width": 3, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "14c7c18d-f4f0-4cc6-9520-1ded13652e7e": { + "id": "14c7c18d-f4f0-4cc6-9520-1ded13652e7e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.outOfStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text42", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 170, + "left": 79.06978127377667, + "width": 7, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "8bad0de3-2e06-4918-9054-af2a0787a679": { + "id": "8bad0de3-2e06-4918-9054-af2a0787a679", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": false + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container13", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0.000008843790809009988, + "width": 3, + "height": 890 + } + } + }, + "84b02a6b-a193-421d-ac42-f6fe3ecf2535": { + "id": "84b02a6b-a193-421d-ac42-f6fe3ecf2535", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffff", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "oblique" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipzy" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text43", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 0.3960462227705383, + "width": 40.044005054566775, + "height": 30 + } + }, + "parent": "8bad0de3-2e06-4918-9054-af2a0787a679" + }, + "ab5dd87a-3981-4736-a316-0b86aa49dd12": { + "id": "ab5dd87a-3981-4736-a316-0b86aa49dd12", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 2px #ffffffff", + "fxActive": false + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon8", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60.000003814697266, + "left": 27.906969633912347, + "width": 16, + "height": 40 + } + }, + "parent": "8bad0de3-2e06-4918-9054-af2a0787a679" + }, + "cfd79a0d-7162-4527-9190-7cff81a69b53": { + "id": "cfd79a0d-7162-4527-9190-7cff81a69b53", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "27be7952-16b7-4dd2-922b-14670240551d" + } + ], + "styles": { + "iconColor": { + "value": "#ffffffff", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconBoxSeam" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon9", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120.0000114440918, + "left": 27.906980092859104, + "width": 16, + "height": 40 + } + }, + "parent": "8bad0de3-2e06-4918-9054-af2a0787a679" + }, + "f9b2026f-e3e1-4e50-8004-9af62a32bf63": { + "id": "f9b2026f-e3e1-4e50-8004-9af62a32bf63", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "af8375fb-ce8f-41b1-9fd7-f907a50f0985" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000033" + } + }, + "properties": { + "icon": { + "value": "IconShoppingCart" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon10", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180.00002670288086, + "left": 27.90696197171283, + "width": 16, + "height": 40 + } + }, + "parent": "8bad0de3-2e06-4918-9054-af2a0787a679" + }, + "567515b9-6a5c-41b1-8a07-e6af54752bd2": { + "id": "567515b9-6a5c-41b1-8a07-e6af54752bd2", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#F8F9FA", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container16", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 510, + "left": 60.465119325040234, + "width": 16, + "height": 290 + } + } + }, + "61581914-f4eb-42f5-9cff-655d5ffa6425": { + "id": "61581914-f4eb-42f5-9cff-655d5ffa6425", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Current Order Status Summary" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text44", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 6.9767384752319614, + "width": 35.99999999999999, + "height": 40 + } + }, + "parent": "567515b9-6a5c-41b1-8a07-e6af54752bd2" + }, + "e92374ba-b343-4ebd-a7f8-bae8427a9f54": { + "id": "e92374ba-b343-4ebd-a7f8-bae8427a9f54", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container17", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 70, + "left": 6.976747326276474, + "width": 35.99999999999999, + "height": 180 + } + }, + "parent": "567515b9-6a5c-41b1-8a07-e6af54752bd2" + }, + "713775dd-4bf0-440f-a2dc-67ddb2508e7e": { + "id": "713775dd-4bf0-440f-a2dc-67ddb2508e7e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Orders placed" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text45", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651156738711118, + "width": 26.999999999999996, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "34cfc5a2-dd75-4460-a6f1-27a2d310cda4": { + "id": "34cfc5a2-dd75-4460-a6f1-27a2d310cda4", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider13", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 20, + "left": 69.7674340558093, + "width": 3.0000000000000004, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "485b8f80-1b37-44fa-9c4f-f6748a4a4071": { + "id": "485b8f80-1b37-44fa-9c4f-f6748a4a4071", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getOrderStats?.data?.ordersPlaced ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text46", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 79.06974137162038, + "width": 7, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "afcf8218-d46e-470c-aa5a-3f5073e8ba33": { + "id": "afcf8218-d46e-470c-aa5a-3f5073e8ba33", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipped" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text47", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 4.651156733851276, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "50662f68-86a2-4b8e-b95d-d4b6b8853ba5": { + "id": "50662f68-86a2-4b8e-b95d-d4b6b8853ba5", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider14", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 70, + "left": 69.76745250630597, + "width": 3, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "98ec489a-22e6-4c6a-a8c9-1536db1bd5d1": { + "id": "98ec489a-22e6-4c6a-a8c9-1536db1bd5d1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getOrderStats?.data?.ordersShipped ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text48", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 79.06977860136558, + "width": 7, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "869163aa-7e63-452b-b887-0952e1d27d0d": { + "id": "869163aa-7e63-452b-b887-0952e1d27d0d", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider15", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 120, + "left": 69.76746599333187, + "width": 3, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "7033b773-25b5-4b85-8275-ec00c0a65d94": { + "id": "7033b773-25b5-4b85-8275-ec00c0a65d94", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Delivered" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text49", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 4.651217296404449, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "f0bcbdbe-0b4c-4435-8464-409209d67060": { + "id": "f0bcbdbe-0b4c-4435-8464-409209d67060", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getOrderStats?.data?.ordersDelivered ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text50", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 79.06978824575117, + "width": 7, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + } + }, + "handle": "home", + "name": "Home", + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "f65f0293-3ae4-4d84-9f81-bbde9285f06c", + "queryName": "tooljetdbGetOrders", + "parameters": {} + }, + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ] + }, + "27be7952-16b7-4dd2-922b-14670240551d": { + "name": "Product Inventory", + "handle": "Product Inventory", + "components": { + "acff592d-3dde-485a-8a9a-d7cf17c677ac": { + "id": "acff592d-3dde-485a-8a9a-d7cf17c677ac", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container1", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": -0.000008380352699788318, + "width": 3, + "height": 890 + } + } + }, + "6a844085-f60a-46ee-9649-d8c14d8652cb": { + "id": "6a844085-f60a-46ee-9649-d8c14d8652cb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffff", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "oblique" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipzy" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text1", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 0.3960462227705383, + "width": 40.044005054566775, + "height": 30 + } + }, + "parent": "acff592d-3dde-485a-8a9a-d7cf17c677ac" + }, + "e4a40b72-1a6e-4037-9d83-88f88fefc0e7": { + "id": "e4a40b72-1a6e-4037-9d83-88f88fefc0e7", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "231b8e69-78b0-4463-8a50-06efbe933c4b" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 27.906976744186046, + "width": 16, + "height": 40 + } + }, + "parent": "acff592d-3dde-485a-8a9a-d7cf17c677ac" + }, + "428f958b-af0f-4c6d-80a9-bd665fb129c1": { + "id": "428f958b-af0f-4c6d-80a9-bd665fb129c1", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 2px #ffffffff", + "fxActive": false + } + }, + "properties": { + "icon": { + "value": "IconBoxSeam" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 119.99996185302734, + "left": 27.906968327561362, + "width": 16, + "height": 40 + } + }, + "parent": "acff592d-3dde-485a-8a9a-d7cf17c677ac" + }, + "9257194e-cc75-47cb-bf83-e9629d3bb853": { + "id": "9257194e-cc75-47cb-bf83-e9629d3bb853", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "af8375fb-ce8f-41b1-9fd7-f907a50f0985" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconShoppingCart" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon3", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 27.90698139921009, + "width": 16, + "height": 40 + } + }, + "parent": "acff592d-3dde-485a-8a9a-d7cf17c677ac" + }, + "5932e45d-c225-44b6-9779-f4a26d0809d0": { + "id": "5932e45d-c225-44b6-9779-f4a26d0809d0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Inventory" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text2", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 9.302334304419727, + "width": 13, + "height": 80 + } + } + }, + "ec624665-b235-4245-a7ae-81ac1b6509b5": { + "id": "ec624665-b235-4245-a7ae-81ac1b6509b5", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#067a6fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 110, + "left": 9.366218077400182, + "width": 38, + "height": 10 + } + } + }, + "92aae4a4-01eb-47d5-91a6-bc7775c95814": { + "id": "92aae4a4-01eb-47d5-91a6-bc7775c95814", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 62.7906976744186, + "width": 4, + "height": 80 + } + } + }, + "182e8cff-88f6-4670-870d-8215c79d4f89": { + "id": "182e8cff-88f6-4670-870d-8215c79d4f89", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Qty in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text3", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "92aae4a4-01eb-47d5-91a6-bc7775c95814" + }, + "831f20fe-64d4-47b2-96d0-04017af2845c": { + "id": "831f20fe-64d4-47b2-96d0-04017af2845c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text4", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "92aae4a4-01eb-47d5-91a6-bc7775c95814" + }, + "ff942281-a78c-46cd-9e9f-7142490cb42a": { + "id": "ff942281-a78c-46cd-9e9f-7142490cb42a", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 86.04651162790697, + "width": 4, + "height": 80 + } + } + }, + "98eac07a-ae23-4d79-91af-63eed54b1de7": { + "id": "98eac07a-ae23-4d79-91af-63eed54b1de7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": true + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Out of stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "ff942281-a78c-46cd-9e9f-7142490cb42a" + }, + "25e5f7af-067d-4fa6-895f-c0ebd812dcc6": { + "id": "25e5f7af-067d-4fa6-895f-c0ebd812dcc6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.outOfStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "ff942281-a78c-46cd-9e9f-7142490cb42a" + }, + "34df246c-35d6-4407-9c85-f3ce9bdc1909": { + "id": "34df246c-35d6-4407-9c85-f3ce9bdc1909", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container4", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 51.16279069767442, + "width": 4, + "height": 80 + } + } + }, + "7a1f6a20-8dbf-42c1-8c14-568f523c0362": { + "id": "7a1f6a20-8dbf-42c1-8c14-568f523c0362", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Qty in total" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 1.0703999561029032, + "width": 39.82871933627176, + "height": 30 + } + }, + "parent": "34df246c-35d6-4407-9c85-f3ce9bdc1909" + }, + "e16653fb-7bcb-404c-8f7a-4fc1310cb928": { + "id": "e16653fb-7bcb-404c-8f7a-4fc1310cb928", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInTotal ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "34df246c-35d6-4407-9c85-f3ce9bdc1909" + }, + "bda85f11-39c0-40d3-ba35-bfd0211fea6f": { + "id": "bda85f11-39c0-40d3-ba35-bfd0211fea6f", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.tooljetdbGetProducts.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{20}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{false}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "78c599af-628d-41a5-8da0-02f40f4b0cfd" + }, + { + "id": "9dd40d5e-36f2-4257-8fc0-9fec788fe025", + "name": "product_name", + "key": "product_name", + "columnType": "string", + "autogenerated": true + }, + { + "id": "6fcb6fac-ad92-4a9d-8473-f47818129a85", + "name": "quantity", + "key": "quantity", + "columnType": "number", + "autogenerated": true, + "isEditable": "{{false}}" + }, + { + "id": "8f97e3b2-69d2-44c4-b301-05f6f6c0afff", + "name": "price", + "key": "price", + "columnType": "string", + "autogenerated": true + }, + { + "id": "935cf13c-6101-4fae-a9ef-d4bb6a396fb2", + "name": "status", + "key": "status", + "columnType": "string", + "autogenerated": true + }, + { + "id": "68977f9a-fb0a-4f7b-85f2-cc5b11a2a0cb", + "name": "category", + "key": "category", + "columnType": "string", + "autogenerated": true + }, + { + "id": "9de6c6a2-512b-45e8-8c80-d2d8271976af", + "name": "description", + "key": "description", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 39, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 143, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 370, + "d7ef4587-d597-44fe-a09f-1e8a5afe7ebd": 161, + "80a7c021-1406-495f-98d2-c8b1789748d6": 169, + "e7828dc4-90f6-4a60-aadb-58356278dff9": 70, + "aa56b72c-5246-47a7-800d-b19a7208970a": 281, + "01397da4-b41e-4540-aec5-440e70fd38d5": 381, + "9de6c6a2-512b-45e8-8c80-d2d8271976af": 335, + "4193a446-2519-454c-9ade-d468ce8e0acb": 89, + "6fcb6fac-ad92-4a9d-8473-f47818129a85": 78, + "935cf13c-6101-4fae-a9ef-d4bb6a396fb2": 117, + "8f97e3b2-69d2-44c4-b301-05f6f6c0afff": 83, + "78c599af-628d-41a5-8da0-02f40f4b0cfd": 35, + "68977f9a-fb0a-4f7b-85f2-cc5b11a2a0cb": 137 + } + }, + "actions": { + "value": [] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "email", + "Assigned to", + "Quantity", + "Status", + "product description", + "id" + ] + }, + "showAddNewRowButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 9.302327450061197, + "width": 38, + "height": 640 + } + } + }, + "387652f3-ee37-4e31-9120-72477abbce76": { + "id": "387652f3-ee37-4e31-9120-72477abbce76", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container5", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 74.4186046511628, + "width": 4, + "height": 80 + } + } + }, + "176ae964-096c-4052-83f2-35f5a778bca4": { + "id": "176ae964-096c-4052-83f2-35f5a778bca4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Low in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "387652f3-ee37-4e31-9120-72477abbce76" + }, + "059251fb-ae99-4dea-a36a-38ce66bd531c": { + "id": "059251fb-ae99-4dea-a36a-38ce66bd531c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.lowInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "387652f3-ee37-4e31-9120-72477abbce76" + }, + "a8bd06f7-bdca-4b54-a4de-8e9c7a9116c1": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onEnterPressed", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#067a6fff" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Search" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 9.236311947347682, + "width": 10, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "8a505dbb-c0d0-4298-85a9-91dbd473e28b": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": false + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#375fcf00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Search" + }, + "loadingState": { + "value": "{{components.textinput1.value != \"\" && queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 32.55813991563003, + "width": 4, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "e70226f2-0985-4145-9fb4-d8355258b0c5": { + "id": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#067A6F", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add a Product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{true}}" + }, + "triggerButtonLabel": { + "value": "Add a Product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "490px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal1", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 400 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 140.0000114440918, + "left": 81.39536539659488, + "width": 8, + "height": 40 + } + } + }, + "5d0ed3c3-5679-4ad7-9282-8910827889fa": { + "id": "5d0ed3c3-5679-4ad7-9282-8910827889fa", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "d06b38dc-e054-4ed1-8e05-294b2a4ce3a7", + "queryName": "tooljetdbAddProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#375fcf00" + }, + "disabledState": { + "value": "{{components.textinput4.value.length < 1 || components.numberinput1.value == 0 || components.numberinput2.value == 0 || components.dropdown1.value == undefined || components.dropdown2.value == undefined || components.textarea2.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add product" + }, + "loadingState": { + "value": "{{queries.tooljetdbAddProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420, + "left": 79.06980320572954, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "ba1e39b1-62cd-4c2a-953a-3ff1c96feaac": { + "id": "ba1e39b1-62cd-4c2a-953a-3ff1c96feaac", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "e70226f2-0985-4145-9fb4-d8355258b0c5" + } + ], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#067a6fff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button3", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420.0000114440918, + "left": 65.08360343565805, + "width": 5.026685393258427, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "ac425c6b-770e-4d8f-ba4b-1161ce72f665": { + "id": "ac425c6b-770e-4d8f-ba4b-1161ce72f665", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651165309322714, + "width": 6, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "3085d2cc-d42a-4fe5-8bf9-da4baefa2048": { + "id": "3085d2cc-d42a-4fe5-8bf9-da4baefa2048", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651153864920198, + "width": 15, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "2c8fbdb8-36a9-48ed-981d-044086f48d6f": { + "id": "2c8fbdb8-36a9-48ed-981d-044086f48d6f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.162797507362264, + "width": 1, + "height": 100 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "31b32887-f5ce-43a0-a439-3547dd1f8775": { + "id": "31b32887-f5ce-43a0-a439-3547dd1f8775", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 4.651165309322714, + "width": 6, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "429f6f5a-1962-493c-9fc0-e5abd73df999": { + "id": "429f6f5a-1962-493c-9fc0-e5abd73df999", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 55.81395601497142, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "1a8ac421-59f2-49b9-b5c2-ea8caa3e6fe0": { + "id": "1a8ac421-59f2-49b9-b5c2-ea8caa3e6fe0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 260, + "left": 4.651161834165184, + "width": 14.943668648140722, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "3362f3ca-5134-4e19-8f06-7b27d1fd942e": { + "id": "3362f3ca-5134-4e19-8f06-7b27d1fd942e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{6}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter product description..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea2", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 4.651136974853472, + "width": 39.00000000000001, + "height": 100 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "e5409124-b033-4c2f-91d1-6dba1a938395": { + "id": "e5409124-b033-4c2f-91d1-6dba1a938395", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 4.6511633831521735, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "5f3ead84-8a42-40b3-b3e6-46ec994a7594": { + "id": "5f3ead84-8a42-40b3-b3e6-46ec994a7594", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter product name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput4", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 20.930224518216153, + "width": 32, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "64931418-c1f1-4a80-b0d6-989ed7e7d7b3": { + "id": "64931418-c1f1-4a80-b0d6-989ed7e7d7b3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Category" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 55.813958117806976, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "0d0efc13-ae0e-4e1f-8d90-c8c508487fef": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{['in_stock', 'yet_to_receive']}}" + }, + "display_values": { + "value": "{{['In stock', 'Yet to receive']}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "layouts": { + "desktop": { + "top": 140, + "left": 67.44186148616947, + "width": 12.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "5caec9ab-5eea-42be-bfb0-4a3783b388e9": { + "id": "5caec9ab-5eea-42be-bfb0-4a3783b388e9", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{[\"apparel\",\"appliances\",\"beverage\",\"electronics\",\"food\",\"furniture\",\"software\"]}}" + }, + "display_values": { + "value": "{{[\"Apparel\",\"Appliances\",\"Beverage\",\"Electronics\",\"Food\",\"Furniture\",\"Software\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select category..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 67.44185877271795, + "width": 12.000000000000002, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "5086fc5a-b6db-4b6d-b3b0-fd362c7a8bd2": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{0}}" + }, + "maxValue": { + "value": "1000" + }, + "minValue": { + "value": "1" + }, + "placeholder": { + "value": "Enter quantity" + }, + "decimalPlaces": { + "value": "{{0}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput1", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "layouts": { + "desktop": { + "top": 140, + "left": 20.93022040961086, + "width": 12, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "5dcf6696-566a-44e6-a65d-1a5f6e9a453f": { + "id": "5dcf6696-566a-44e6-a65d-1a5f6e9a453f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "0" + }, + "maxValue": { + "value": "999999" + }, + "minValue": { + "value": "0.50" + }, + "placeholder": { + "value": "Enter price" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput2", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 200, + "left": 20.930272386941944, + "width": 12, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#067a6fff" + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#067a6fff" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Edit a Product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{true}}" + }, + "triggerButtonLabel": { + "value": "Edit a Product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "290px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal2", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 140.00003814697266, + "left": 62.79071485596067, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "a0c5b8ff-e151-4e8a-b887-e74054f722e8": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{queries.tooljetdbGetProducts.data.map(product => product.id)}}" + }, + "display_values": { + "value": "{{queries.tooljetdbGetProducts.data.map(product => `#${product.id} ${product.product_name}`)}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a Product..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown3", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 30, + "left": 18.604649603499897, + "width": 33, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ed24609d-8dd2-4214-b67b-c9d0e16a8a7c": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 30, + "left": 4.651162790697675, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ca8c0376-fc72-42b3-8082-ec468c7f00ce": { + "id": "ca8c0376-fc72-42b3-8082-ec468c7f00ce", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{components.dropdown3.value == undefined}}", + "fxActive": true + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{queries?.tooljetdbGetProducts?.data?.filter(product => product.id == components.dropdown3.value)[0]?.quantity ?? 0}}" + }, + "maxValue": { + "value": "1000" + }, + "minValue": { + "value": "0" + }, + "placeholder": { + "value": "Enter quantity" + }, + "decimalPlaces": { + "value": "{{0}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput3", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 90, + "left": 18.60464124919019, + "width": 11.000000000000002, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "68ddb46c-0f0d-4085-9498-c10fbbcb50ea": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 90, + "left": 4.651162790697675, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "3c8aeefe-b9b1-4dd8-9415-a7ed57e2e0b3": { + "id": "3c8aeefe-b9b1-4dd8-9415-a7ed57e2e0b3", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{components.dropdown3.value == undefined}}", + "fxActive": true + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{queries?.tooljetdbGetProducts?.data?.filter(product => product.id == components.dropdown3.value)[0]?.price ?? 0}}" + }, + "maxValue": { + "value": "999999" + }, + "minValue": { + "value": "0.50" + }, + "placeholder": { + "value": "Enter price" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput4", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 90, + "left": 69.76743910533398, + "width": 11.000000000000002, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "0d90cf44-9df3-4bf5-99f0-ebbfc41e47cc": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 90, + "left": 58.139534883720934, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "22d7874c-d768-4405-a69b-ef20094d6bb7": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{components.dropdown3.value == undefined}}", + "fxActive": true + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{components.numberinput3.value > 0 ? [\"in_stock\", \"yet_to_receive\"] : [\"out_of_stock\"]}}" + }, + "display_values": { + "value": "{{components.numberinput3.value > 0 ? [\"In stock\", \"Yet to receive\"] : [\"Out of stock\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown4", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 150, + "left": 18.60465302889386, + "width": 33, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "15555a82-c2b2-47fc-b662-44aa832e0798": { + "id": "15555a82-c2b2-47fc-b662-44aa832e0798", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text23", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 4.651161555128177, + "width": 6, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "23a1a238-7423-4911-b3a9-988ab86b5969": { + "id": "23a1a238-7423-4911-b3a9-988ab86b5969", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + } + ], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#067a6fff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button4", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 219.99998092651367, + "left": 58.139530740432065, + "width": 6.000000000000001, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "4cfb4009-0c20-49e3-9ccb-fc194b22c1d3": { + "id": "4cfb4009-0c20-49e3-9ccb-fc194b22c1d3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "edc2a168-cb72-405b-b83f-22efa54f05cf", + "queryName": "tooljetdbUpdateProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#375fcf00" + }, + "disabledState": { + "value": "{{components.dropdown3.value == undefined || components.numberinput4.value == 0 || components.dropdown4.value == undefined}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Update product" + }, + "loadingState": { + "value": "{{queries.tooljetdbUpdateProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button5", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 74.41860524711768, + "width": 9, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "07ea5cec-7ebd-49fe-a6d5-a88b4bd21091": { + "id": "07ea5cec-7ebd-49fe-a6d5-a88b4bd21091", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider2", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 90, + "left": 51.162799791465915, + "width": 1, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + } + }, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ] + }, + "af8375fb-ce8f-41b1-9fd7-f907a50f0985": { + "name": "All Orders", + "handle": "all-orders", + "components": { + "165a9726-b38c-4181-992e-50484b47ccb7": { + "id": "165a9726-b38c-4181-992e-50484b47ccb7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "All Orders" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text2", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 9.302325924067027, + "width": 10, + "height": 80 + } + } + }, + "e190d929-e4ba-4beb-9541-2701b8a7af09": { + "id": "e190d929-e4ba-4beb-9541-2701b8a7af09", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#067a6fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 110, + "left": 9.30232558139535, + "width": 38, + "height": 10 + } + } + }, + "866abf98-2c86-4bb7-afa6-a7a7bcadbe75": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order summary" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 30, + "left": 4.651166363741077, + "width": 13, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "4ce5c8d2-a7b7-40e9-909d-4b62424197d9": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider2", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 80, + "left": 2.876220552879752, + "width": 40.024616181900626, + "height": 10 + } + }, + "withDefaultChildren": false + }, + "41721009-f671-4672-bb0c-7f25645b4ba1": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Package #{{cardData.id}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 100, + "left": 4.651159868850983, + "width": 8.982736282956534, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "a171415a-396f-474e-8834-710a1aaa6403": { + "id": "a171415a-396f-474e-8834-710a1aaa6403", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order date:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651178052303546, + "width": 4.97020146401503, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "296fd188-428b-475d-9ef6-9d1dedb47303": { + "id": "296fd188-428b-475d-9ef6-9d1dedb47303", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipping address:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 53.488371697641014, + "width": 8, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "2edb5577-f34a-4bb3-be92-a90c8a8acfb7": { + "id": "2edb5577-f34a-4bb3-be92-a90c8a8acfb7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text13", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 4.651166474149337, + "width": 4.011984193820045, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "df317a0d-d5cd-4a8c-ad3b-d69fdd72e472": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 100, + "left": 48.83721226769237, + "width": 1, + "height": 260 + } + }, + "withDefaultChildren": false + }, + "f8610231-6139-4cdf-9c60-bc0598faada9": { + "id": "f8610231-6139-4cdf-9c60-bc0598faada9", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Phone number:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 53.48836635998077, + "width": 7.006413163179375, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "5cfaf750-7739-4f4e-b0be-b60163e8c7d6": { + "id": "5cfaf750-7739-4f4e-b0be-b60163e8c7d6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.phone_number}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 72.09302471233141, + "width": 10, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "2fb74cdb-a6e8-408e-8db6-d18cb68bcbed": { + "id": "2fb74cdb-a6e8-408e-8db6-d18cb68bcbed", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.order_date}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 16.27908627821234, + "width": 12.99527110189804, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "9ba55558-5051-4812-b153-c6a28d5be0b6": { + "id": "9ba55558-5051-4812-b153-c6a28d5be0b6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Comments:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 4.651167915842052, + "width": 7.006413163179376, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "f7071036-bd00-42d5-8d55-52c0600df081": { + "id": "f7071036-bd00-42d5-8d55-52c0600df081", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.quantity}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 16.279070755897457, + "width": 5.988307313597203, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "8639c34e-8d3e-4311-b515-f6867f0c4562": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#067A6F", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Create an order" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{true}}" + }, + "triggerButtonLabel": { + "value": "Create an order" + }, + "size": { + "value": "xl" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "415px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal1", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 400 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 50, + "left": 81.39534534799706, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "81f4339a-95de-46d2-8669-b2ba74036e8e": { + "id": "81f4339a-95de-46d2-8669-b2ba74036e8e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "8f3776cc-8710-4985-b3f1-7388804078a4", + "queryName": "orderDetailsBackup", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#375fcf00" + }, + "disabledState": { + "value": "{{components.dropdown1.value == undefined || components.dropdown2.value == undefined || components.textinput1.value == \"\" || components.textinput2.value == \"\" || !components.textinput2.isValid || components.textarea1.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Place order" + }, + "loadingState": { + "value": "{{queries.orderDetailsBackup.isLoading || queries.tooljetdbVerifyProductQuantity.isLoading || queries.tooljetdbReduceProductQuantity.isLoading || queries.tooljetdbCreateOrder.isLoading || queries.tooljetdbCurrentProductStatus.isLoading || queries.tooljetdbRollbackQuantity.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 340, + "left": 79.06977170529589, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "bc8dd077-0f6d-46e3-b88a-e878245ce867": { + "id": "bc8dd077-0f6d-46e3-b88a-e878245ce867", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "8639c34e-8d3e-4311-b515-f6867f0c4562" + } + ], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#067a6fff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 340, + "left": 65.08362090356762, + "width": 5.026685393258427, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "400c8a01-7574-4f74-8ee7-49b49a8ed2f4": { + "id": "400c8a01-7574-4f74-8ee7-49b49a8ed2f4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110, + "left": 4.651166911103314, + "width": 5, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "374a3164-018e-4cb7-af83-ea392abb9eeb": { + "id": "374a3164-018e-4cb7-af83-ea392abb9eeb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651165995124106, + "width": 15, + "height": 30 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "7c635eca-f0d8-4a7c-ba6a-0e87fec2004a": { + "id": "7c635eca-f0d8-4a7c-ba6a-0e87fec2004a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Billing Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 53.488382649293165, + "width": 15, + "height": 30 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "32329c5e-a9bf-405c-894e-bb5cb854c352": { + "id": "32329c5e-a9bf-405c-894e-bb5cb854c352", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider2", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 20, + "left": 48.83720930232558, + "width": 1, + "height": 290 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "57319c90-0082-453a-9d23-e52165befda6": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562", + "layouts": { + "desktop": { + "top": 60, + "left": 65.1423976898723, + "width": 12.986691558221782, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "9a73f323-4640-493e-886e-e487bfacd6c1": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text23", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562", + "layouts": { + "desktop": { + "top": 60, + "left": 53.488337158183775, + "width": 4.011984193820043, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "0b811944-4c35-4915-a6ec-bb532ce6718b": { + "id": "0b811944-4c35-4915-a6ec-bb532ce6718b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Address" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 170, + "left": 53.48836536981169, + "width": 4, + "height": 30 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "51cd95f0-1ece-4bb2-b882-19144af51805": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter address" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea1", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562", + "layouts": { + "desktop": { + "top": 200, + "left": 53.42362234932057, + "width": 18, + "height": 110 + } + }, + "withDefaultChildren": false + }, + "1abf6286-6d97-4524-ad55-779f71d91c60": { + "id": "1abf6286-6d97-4524-ad55-779f71d91c60", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Phone no" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text25", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110, + "left": 53.48837816809348, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "5451d483-e603-426d-890a-78e8fad06336": { + "id": "5451d483-e603-426d-890a-78e8fad06336", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^\\d*$/.test(components.textinput2.value) ? true : \"Invalid phone number\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your phone number" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110, + "left": 65.1162712423369, + "width": 12.986691558221782, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "db1b85b5-db78-4e0a-9cd0-6eb61756bf57": { + "id": "db1b85b5-db78-4e0a-9cd0-6eb61756bf57", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Customer request" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 170, + "left": 4.651171440848492, + "width": 7, + "height": 30 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "e35349b2-f082-46fe-8318-1caa618fe5e1": { + "id": "e35349b2-f082-46fe-8318-1caa618fe5e1", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Eg. This order is a gift- please wrap it!" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea2", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 4.65115874998351, + "width": 18, + "height": 110 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "da62e44d-2029-4d12-9a57-4b2a7219bb91": { + "id": "da62e44d-2029-4d12-9a57-4b2a7219bb91", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{28}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "${{cardData.total_price}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 76.74418196183159, + "width": 8, + "height": 40 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "5c2a55da-c439-497d-a5c4-bc269695811e": { + "id": "5c2a55da-c439-497d-a5c4-bc269695811e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 65.10333150708277, + "width": 5, + "height": 40 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "511edbb1-178b-4a32-8d48-9317af67a3ae": { + "id": "511edbb1-178b-4a32-8d48-9317af67a3ae", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container1", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 3, + "height": 890 + } + } + }, + "c4b1a932-dccf-4af0-baae-1daad7fdfb27": { + "id": "c4b1a932-dccf-4af0-baae-1daad7fdfb27", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffff", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "oblique" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipzy" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 0.3960462227705383, + "width": 40.044005054566775, + "height": 30 + } + }, + "parent": "511edbb1-178b-4a32-8d48-9317af67a3ae" + }, + "5590f707-b7fc-4ed1-972f-4dd78ddf1494": { + "id": "5590f707-b7fc-4ed1-972f-4dd78ddf1494", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "231b8e69-78b0-4463-8a50-06efbe933c4b" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 27.906976744186046, + "width": 16, + "height": 40 + } + }, + "parent": "511edbb1-178b-4a32-8d48-9317af67a3ae" + }, + "8cfcf4bd-7479-406e-b5cf-319164a680f5": { + "id": "8cfcf4bd-7479-406e-b5cf-319164a680f5", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "27be7952-16b7-4dd2-922b-14670240551d" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconBoxSeam" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 27.90697301885739, + "width": 16, + "height": 40 + } + }, + "parent": "511edbb1-178b-4a32-8d48-9317af67a3ae" + }, + "f27bb2ac-f9f9-441d-ba37-f9d6f8e82f0e": { + "id": "f27bb2ac-f9f9-441d-ba37-f9d6f8e82f0e", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 2px #ffffffff", + "fxActive": false + } + }, + "properties": { + "icon": { + "value": "IconShoppingCart" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon3", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 179.9999542236328, + "left": 27.90694290821947, + "width": 16, + "height": 40 + } + }, + "parent": "511edbb1-178b-4a32-8d48-9317af67a3ae" + }, + "e0ff872b-e676-4b7f-b7f4-9dabe92a0f0e": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onSelect", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "selectOption", + "componentId": "6bfe6fd2-830d-4ca5-bf72-4878230cc667", + "componentSpecificActionParams": [ + { + "handle": "select", + "displayName": "Select", + "value": "{{}}" + } + ] + } + ], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{queries.tooljetdbGetProducts.data.filter(product => product.status == \"in_stock\").map(product => product.id)}}" + }, + "display_values": { + "value": "{{queries.tooljetdbGetProducts.data.filter(product => product.status == \"in_stock\").map(product => product.product_name)}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + }, + "placeholder": { + "value": "Select..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562", + "layouts": { + "desktop": { + "top": 60, + "left": 20.93024016569643, + "width": 11.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "bc936cc5-a561-4511-b93b-2afa4d8524f5": { + "id": "bc936cc5-a561-4511-b93b-2afa4d8524f5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Select a product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 4.651153541276897, + "width": 7, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "6bfe6fd2-830d-4ca5-bf72-4878230cc667": { + "id": "6bfe6fd2-830d-4ca5-bf72-4878230cc667", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onSelect", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info" + } + ], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{components.dropdown1.value == undefined}}", + "fxActive": true + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{Array.from({length: queries?.tooljetdbGetProducts?.data?.filter(product => product.id == components.dropdown1.value)[0]?.quantity ?? 0}, (_, i) => i + 1)}}" + }, + "display_values": { + "value": "{{Array.from({length: queries?.tooljetdbGetProducts?.data?.filter(product => product.id == components.dropdown1.value)[0]?.quantity ?? 0}, (_, i) => i + 1)}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + }, + "placeholder": { + "value": "Select..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110, + "left": 20.93022783617782, + "width": 11.000000000000002, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "4bc67ffc-f2ca-491a-b051-4550a548d3ae": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{cardData.comments}}" + }, + "placeholder": { + "value": "" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea3", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 250, + "left": 4.651169675288805, + "width": 18.000000000000004, + "height": 100 + } + }, + "withDefaultChildren": false + }, + "f54ea458-02e0-4af1-a49b-7824280af6df": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{cardData.address}}" + }, + "placeholder": { + "value": "Placeholder text" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea4", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 210, + "left": 53.48837209302326, + "width": 18.000000000000004, + "height": 140 + } + }, + "withDefaultChildren": false + }, + "aa4acf33-d388-4138-86ff-e7080277cba9": { + "id": "aa4acf33-d388-4138-86ff-e7080277cba9", + "component": { + "properties": { + "columnData": { + "type": "code", + "displayName": "Column Data" + }, + "cardData": { + "type": "code", + "displayName": "Card Data" + }, + "cardWidth": { + "type": "code", + "displayName": "Card Width", + "validation": { + "schema": { + "type": "number" + } + } + }, + "cardHeight": { + "type": "code", + "displayName": "Card Height", + "validation": { + "schema": { + "type": "number" + } + } + }, + "enableAddCard": { + "type": "toggle", + "displayName": "Enable Add Card" + }, + "showDeleteButton": { + "type": "toggle", + "displayName": "Show Delete Button" + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onUpdate": { + "displayName": "On update" + }, + "onAddCardClick": { + "displayName": "On add card click" + }, + "onCardRemoved": { + "displayName": "Card removed" + }, + "onCardAdded": { + "displayName": "Card added" + }, + "onCardMoved": { + "displayName": "Card moved" + }, + "onCardSelected": { + "displayName": "Card selected" + } + }, + "styles": { + "disabledState": { + "type": "toggle", + "displayName": "Disable" + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility" + }, + "accentColor": { + "type": "color", + "displayName": "Accent color" + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onCardMoved", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b886a2d1-7aa7-4f9d-aefa-ae9246d7e513", + "queryName": "tooljetdbUpdateOrderStatus", + "parameters": {} + } + ], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.tooljetdbUpdateOrderStatus.isLoading || queries.tooljetdbGetOrders.isLoading}}", + "fxActive": true + }, + "accentColor": { + "value": "#067a6fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "columnData": { + "value": "{{[{ \"id\": \"order_placed\", \"title\": \"Orders Placed\" },{ \"id\": \"shipped\", \"title\": \"Shipped\" },{ \"id\": \"delivered\", \"title\": \"delivered\" }]}}" + }, + "cardData": { + "value": "{{queries?.tooljetdbGetOrders?.data?.map(order => ({...order, columnId: order.status})) ?? []}}" + }, + "cardWidth": { + "value": "{{300}}" + }, + "cardHeight": { + "value": "{{100}}" + }, + "enableAddCard": { + "value": "{{false}}" + }, + "showDeleteButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "kanban1", + "displayName": "Kanban", + "description": "Kanban", + "component": "Kanban", + "defaultSize": { + "width": 40, + "height": 490 + }, + "defaultChildren": [ + { + "componentName": "Text", + "layout": { + "top": 20, + "left": 4, + "height": 30 + }, + "properties": [ + "text" + ], + "accessorKey": "text", + "styles": [ + "fontWeight", + "textSize", + "textColor" + ], + "defaultValue": { + "text": "{{cardData.title}}", + "fontWeight": "bold", + "textSize": 16, + "textColor": "#000" + } + }, + { + "componentName": "Text", + "layout": { + "top": 50, + "left": 4, + "height": 30 + }, + "properties": [ + "text" + ], + "accessorKey": "text", + "styles": [ + "textSize", + "textColor" + ], + "defaultValue": { + "text": "{{cardData.description}}", + "textSize": 14, + "textColor": "#000" + } + } + ], + "actions": [ + { + "handle": "addCard", + "displayName": "Add Card", + "params": [ + { + "handle": "cardDetails", + "displayName": "Card Details", + "defaultValue": "{{{ id: \"c11\", title: \"Title 11\", description: \"Description 11\", columnId: \"r3\" }}}" + } + ] + }, + { + "handle": "deleteCard", + "displayName": "Delete Card", + "params": [ + { + "handle": "id", + "displayName": "Card Id", + "defaultValue": "{{components.kanban1?.lastSelectedCard?.id}}" + } + ] + }, + { + "handle": "moveCard", + "displayName": "Move Card", + "params": [ + { + "handle": "cardId", + "displayName": "Card Id", + "defaultValue": "{{components.kanban1?.lastSelectedCard?.id}}" + }, + { + "handle": "columnId", + "displayName": "Destination Column Id", + "defaultValue": "" + } + ] + }, + { + "handle": "updateCardData", + "displayName": "Update Card Data", + "params": [ + { + "handle": "id", + "displayName": "Card Id", + "defaultValue": "{{components.kanban1?.lastSelectedCard?.id}}" + }, + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{{...components.kanban1?.lastSelectedCard, title: 'New Title'}}}" + } + ] + } + ], + "exposedVariables": { + "updatedCardData": {}, + "lastAddedCard": {}, + "lastRemovedCard": {}, + "lastCardMovement": {}, + "lastSelectedCard": {}, + "lastUpdatedCard": {}, + "lastCardUpdate": [] + } + }, + "layouts": { + "desktop": { + "top": 130, + "left": 9.295899538701875, + "width": 38, + "height": 700 + } + } + }, + "c0745deb-4ab1-465a-92e5-ec09288c7930": { + "id": "c0745deb-4ab1-465a-92e5-ec09288c7930", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "text": { + "value": "{{cardData.title}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "fontWeight": { + "value": "bold" + }, + "textSize": { + "value": 16 + }, + "textColor": { + "value": "#000" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "#{{cardData.id}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "fontWeight": { + "value": "bold" + }, + "textSize": { + "value": 16 + }, + "textColor": { + "value": "#000" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text32", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 3.9999907118557045, + "height": 30, + "width": 31.829892866475046 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9" + }, + "4f5b8781-789b-467f-a75d-a4dfe1fac372": { + "id": "4f5b8781-789b-467f-a75d-a4dfe1fac372", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "text": { + "value": "{{cardData.description}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "textSize": { + "value": 14 + }, + "textColor": { + "value": "#000" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.customer_name}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "textSize": { + "value": 14 + }, + "textColor": { + "value": "#000" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text33", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 4.651162790697675, + "height": 50, + "width": 25 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9" + }, + "68fafc7a-a099-4fb2-8a04-ec6e7a62fc5e": { + "id": "68fafc7a-a099-4fb2-8a04-ec6e7a62fc5e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067a6fff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "italic" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "${{cardData.total_price}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text34", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 65.11627906976743, + "width": 11.999999999999998, + "height": 50 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9" + }, + "69844913-6e7f-4b97-960c-260384691726": { + "id": "69844913-6e7f-4b97-960c-260384691726", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order summary" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text35", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 4.651163680307713, + "width": 13, + "height": 40 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "23cc5d76-1eb2-4f06-8043-0d8801e26c6c": { + "id": "23cc5d76-1eb2-4f06-8043-0d8801e26c6c", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider3", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 80, + "left": 2.3255813953488373, + "width": 41.00000000000001, + "height": 10 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "3a379169-6cf4-4534-ae78-1d932b96aed0": { + "id": "3a379169-6cf4-4534-ae78-1d932b96aed0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text36", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 65.11628302358983, + "width": 5, + "height": 40 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "fa03e6c7-9ad5-40f0-9f0d-91a217e7997b": { + "id": "fa03e6c7-9ad5-40f0-9f0d-91a217e7997b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": false + }, + "textSize": { + "value": "{{28}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "${{cardData.total_price}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text37", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 76.74418489618814, + "width": 8, + "height": 40 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "6f0d01c7-24ea-4149-a2b3-965ce3c86da2": { + "id": "6f0d01c7-24ea-4149-a2b3-965ce3c86da2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Package #{{cardData.id}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text38", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 100, + "left": 4.651162948111889, + "width": 8.982736282956534, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "7eaa2d07-60a9-48e8-8bfe-1e3f9793b02c": { + "id": "7eaa2d07-60a9-48e8-8bfe-1e3f9793b02c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order date:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text39", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651163680307713, + "width": 4.97020146401503, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "3c6a33bf-910a-4276-b005-bd729c12a29d": { + "id": "3c6a33bf-910a-4276-b005-bd729c12a29d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.order_date}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text40", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 16.279070755897457, + "width": 12.99527110189804, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "ce4f1a01-511b-4eb8-99e9-f6c23d293b2d": { + "id": "ce4f1a01-511b-4eb8-99e9-f6c23d293b2d", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider3", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 140, + "left": 48.83721651805144, + "width": 1, + "height": 220 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "34d613b7-ecc2-4016-a601-caf8c937efbd": { + "id": "34d613b7-ecc2-4016-a601-caf8c937efbd", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Phone number:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text41", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 53.488371697641014, + "width": 7.006413163179375, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "6b1102c7-5c59-4f1b-a479-125d3bd66c90": { + "id": "6b1102c7-5c59-4f1b-a479-125d3bd66c90", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.phone_number}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text42", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 72.09302641887187, + "width": 10, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "cf6f94e0-37f6-4768-911f-3290af062e01": { + "id": "cf6f94e0-37f6-4768-911f-3290af062e01", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text43", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 4.651163680307713, + "width": 4.011984193820045, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "98c09d1e-772d-4f7b-8233-ef83f71c5a39": { + "id": "98c09d1e-772d-4f7b-8233-ef83f71c5a39", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.quantity}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text44", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 16.279070755897457, + "width": 5.988307313597203, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "2630be58-5440-4757-b1f4-51c542888d64": { + "id": "2630be58-5440-4757-b1f4-51c542888d64", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Comments:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text45", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 4.651163680307713, + "width": 7.006413163179376, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "3c11a4c8-c749-482b-b934-635819a2e98a": { + "id": "3c11a4c8-c749-482b-b934-635819a2e98a", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{cardData.comments}}" + }, + "placeholder": { + "value": "" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea5", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 250, + "left": 4.651163680307713, + "width": 18.000000000000004, + "height": 100 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "9d4ee3eb-988f-4231-9d86-d885fb6b741a": { + "id": "9d4ee3eb-988f-4231-9d86-d885fb6b741a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipping address:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text46", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 53.488371697641014, + "width": 8, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "11fddc11-da8d-4d82-b087-78a95f10605a": { + "id": "11fddc11-da8d-4d82-b087-78a95f10605a", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{cardData.address}}" + }, + "placeholder": { + "value": "Placeholder text" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea6", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 53.488371697641014, + "width": 18.000000000000004, + "height": 140 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + } + }, + "hidden": false, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "f65f0293-3ae4-4d84-9f81-bbde9285f06c", + "queryName": "tooljetdbGetOrders", + "parameters": {} + }, + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ] + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "100000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": "1000", + "canvasBackgroundColor": "", + "backgroundFxQuery": "" + } + }, + "appId": "d328c6b4-b2ab-49c5-ae0c-6e35cb444f61", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-08-11T05:25:31.673Z", + "updatedAt": "2023-10-10T08:28:07.895Z" + }, + "dataQueries": [ + { + "id": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "name": "tooljetdbGetProducts", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_products", + "list_rows": { + "where_filters": { + "12": { + "column": "product_name", + "operator": "ilike", + "value": "{{page.name == \"Product Inventory\" ? \"%\" + components.textinput1.value + \"%\" : \"\"}}", + "id": "12" + } + } + }, + "runOnPageLoad": false, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "e74a94cb-c456-4634-8ae7-67043bb4681e", + "queryName": "getProductStats", + "parameters": {} + } + ], + "table_id": "3f453f43-f215-4e20-ae03-16c67cbbad8d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-25T13:43:31.853Z", + "updatedAt": "2023-09-13T05:11:25.668Z" + }, + { + "id": "f65f0293-3ae4-4d84-9f81-bbde9285f06c", + "name": "tooljetdbGetOrders", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_orders", + "list_rows": { + "order_filters": { + "1": { + "column": "id", + "order": "desc", + "id": "1" + } + } + }, + "runOnPageLoad": false, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "bb6cf090-4745-4df4-bd9d-0ec7d5996b88", + "queryName": "getOrderStats", + "parameters": {} + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "afe9a191-3598-4985-b558-5135b08a3be2", + "queryName": "getOrderStatsChartData", + "parameters": {} + } + ], + "table_id": "2c85cdeb-a1c7-4287-b365-0ececf80876d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T20:18:50.489Z", + "updatedAt": "2023-09-18T09:50:00.266Z" + }, + { + "id": "d06b38dc-e054-4ed1-8e05-294b2a4ce3a7", + "name": "tooljetdbAddProduct", + "options": { + "operation": "create_row", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_products", + "list_rows": {}, + "create_row": { + "0": { + "column": "product_name", + "value": "{{components.textinput4.value}}" + }, + "1": { + "column": "quantity", + "value": "{{components.numberinput1.value}}" + }, + "2": { + "column": "status", + "value": "{{components.dropdown1.value}}" + }, + "3": { + "column": "price", + "value": "{{components.numberinput2.value}}" + }, + "4": { + "column": "category", + "value": "{{components.dropdown2.value}}" + }, + "5": { + "column": "description", + "value": "{{components.textarea2.value}}" + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Product added successfully", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "clear", + "componentId": "a8bd06f7-bdca-4b54-a4de-8e9c7a9116c1", + "componentSpecificActionParams": [] + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to add product! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "3f453f43-f215-4e20-ae03-16c67cbbad8d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T20:19:35.395Z", + "updatedAt": "2023-09-19T21:08:16.169Z" + }, + { + "id": "e74a94cb-c456-4634-8ae7-67043bb4681e", + "name": "getProductStats", + "options": { + "code": "totalQty = 0;\ninStockQty = 0;\nlowInStock = 0;\noutOfStock = 0;\nyetToReceive = 0;\n\nqueries.tooljetdbGetProducts.data.forEach((product) => {\n totalQty += product.quantity;\n inStockQty += product.status == \"in_stock\" ? product.quantity : 0;\n yetToReceive += product.status == \"yet_to_receive\" ? product.quantity : 0;\n lowInStock += product.quantity <= 10 && product.quantity > 0 ? 1 : 0;\n outOfStock += product.quantity == 0 ? 1 : 0;\n});\n\nreturn {\n quantityInTotal: totalQty,\n quantityInStock: inStockQty,\n quantityYetToReceive: yetToReceive,\n lowInStock: lowInStock,\n outOfStock: outOfStock,\n};", + "hasParamSupport": true, + "parameters": [] + }, + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T20:50:20.358Z", + "updatedAt": "2023-08-27T01:14:14.396Z" + }, + { + "id": "6f9425a6-31dc-430e-96d0-81009df824d2", + "name": "tooljetdbCreateOrder", + "options": { + "operation": "create_row", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_orders", + "list_rows": {}, + "create_row": { + "0": { + "column": "product_id", + "value": "{{queries.orderDetailsBackup.data.id}}" + }, + "1": { + "column": "quantity", + "value": "{{queries.orderDetailsBackup.data.quantity}}" + }, + "2": { + "column": "customer_name", + "value": "{{queries.orderDetailsBackup.data.customer_name}}" + }, + "3": { + "column": "phone_number", + "value": "{{queries.orderDetailsBackup.data.phone_number}}" + }, + "4": { + "column": "address", + "value": "{{queries.orderDetailsBackup.data.address}}" + }, + "5": { + "column": "comments", + "value": "{{queries.orderDetailsBackup.data.comments}}" + }, + "6": { + "column": "order_date", + "value": "{{moment().format()}}" + }, + "7": { + "column": "total_price", + "value": "{{parseFloat((queries.orderDetailsBackup.data.quantity * queries.tooljetdbGetProducts.data.filter(product => product.id == queries.orderDetailsBackup.data.id)[0].price).toFixed(2))}}" + }, + "29": { + "column": "status", + "value": "order_placed" + } + }, + "events": [ + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to place order! Please wait until the transaction is rolled back.", + "alertType": "warning" + }, + { + "eventId": "onDataQueryFailure", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b9eb6763-8bed-49be-b827-d021c5d2dc54", + "queryName": "tooljetdbCurrentProductStatus", + "parameters": {} + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Order placed successfully.", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "f65f0293-3ae4-4d84-9f81-bbde9285f06c", + "queryName": "tooljetdbGetOrders", + "parameters": {} + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ], + "table_id": "2c85cdeb-a1c7-4287-b365-0ececf80876d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T22:06:22.611Z", + "updatedAt": "2023-09-13T05:11:25.709Z" + }, + { + "id": "8f3776cc-8710-4985-b3f1-7388804078a4", + "name": "orderDetailsBackup", + "options": { + "code": "return {\n id: components.dropdown1.value,\n quantity: components.dropdown2.value,\n comments: components.textarea2.value,\n customer_name: components.textinput1.value,\n phone_number: components.textinput2.value,\n address: components.textarea1.value,\n};", + "hasParamSupport": true, + "parameters": [], + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "03718381-2aa2-431d-9897-53458c914931", + "queryName": "tooljetdbVerifyProductQuantity", + "parameters": {} + } + ] + }, + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T22:08:04.942Z", + "updatedAt": "2023-09-01T12:34:14.916Z" + }, + { + "id": "fc793d53-f1f6-4a57-a26c-e3e6db7e8271", + "name": "tooljetdbReduceProductQuantity", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_products", + "list_rows": {}, + "update_rows": { + "columns": { + "0": { + "column": "quantity", + "value": "{{queries.tooljetdbVerifyProductQuantity.data.quantity - queries.orderDetailsBackup.data.quantity}}" + }, + "32": { + "column": "status", + "value": "{{queries.tooljetdbVerifyProductQuantity.data.quantity - queries.orderDetailsBackup.data.quantity == 0 ? \"out_of_stock\" : \"in_stock\"}}" + } + }, + "where_filters": { + "22": { + "column": "id", + "operator": "eq", + "value": "{{components.dropdown1.value}}", + "id": "22" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "6f9425a6-31dc-430e-96d0-81009df824d2", + "queryName": "tooljetdbCreateOrder", + "parameters": {} + } + ], + "table_id": "3f453f43-f215-4e20-ae03-16c67cbbad8d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T22:17:15.249Z", + "updatedAt": "2023-09-13T05:11:25.686Z" + }, + { + "id": "03718381-2aa2-431d-9897-53458c914931", + "name": "tooljetdbVerifyProductQuantity", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": true, + "table_name": "supply_chain_products", + "list_rows": { + "where_filters": { + "25": { + "column": "id", + "operator": "eq", + "value": "{{components.dropdown1.value}}", + "id": "25" + } + }, + "limit": "1" + }, + "transformation": "return data[0];", + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "runOnlyIf": "{{queries.tooljetdbVerifyProductQuantity.data.quantity >= queries.orderDetailsBackup.data.quantity}}", + "queryId": "fc793d53-f1f6-4a57-a26c-e3e6db7e8271", + "queryName": "tooljetdbReduceProductQuantity", + "parameters": {} + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Selected product quantity not available! Please select again.", + "alertType": "warning", + "runOnlyIf": "{{queries.tooljetdbVerifyProductQuantity.data.quantity < queries.orderDetailsBackup.data.quantity}}" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "selectOption", + "componentId": "6bfe6fd2-830d-4ca5-bf72-4878230cc667", + "componentSpecificActionParams": [ + { + "handle": "select", + "displayName": "Select", + "value": "{{}}" + } + ], + "runOnlyIf": "{{queries.tooljetdbVerifyProductQuantity.data.quantity < queries.orderDetailsBackup.data.quantity}}" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "runOnlyIf": "{{queries.tooljetdbVerifyProductQuantity.data.quantity < queries.orderDetailsBackup.data.quantity}}", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ], + "table_id": "3f453f43-f215-4e20-ae03-16c67cbbad8d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T22:20:15.270Z", + "updatedAt": "2023-09-13T05:11:25.691Z" + }, + { + "id": "8f57b70b-154a-4edf-91cb-ba209c237f84", + "name": "tooljetdbRollbackQuantity", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_products", + "list_rows": {}, + "update_rows": { + "columns": { + "28": { + "column": "quantity", + "value": "{{queries.tooljetdbCurrentProductStatus.data.quantity + queries.orderDetailsBackup.data.quantity}}" + } + }, + "where_filters": { + "27": { + "column": "id", + "operator": "eq", + "value": "{{queries.orderDetailsBackup.data.id}}", + "id": "27" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "Transaction rolled back successfully.", + "alertType": "info" + } + ], + "table_id": "3f453f43-f215-4e20-ae03-16c67cbbad8d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T22:35:52.521Z", + "updatedAt": "2023-09-13T05:11:25.698Z" + }, + { + "id": "b9eb6763-8bed-49be-b827-d021c5d2dc54", + "name": "tooljetdbCurrentProductStatus", + "options": { + "operation": "list_rows", + "transformationLanguage": "javascript", + "enableTransformation": true, + "table_name": "supply_chain_products", + "list_rows": { + "where_filters": { + "26": { + "column": "id", + "operator": "eq", + "value": "{{queries.orderDetailsBackup.data.id}}", + "id": "26" + } + }, + "limit": "1" + }, + "transformation": "return data[0];", + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "8f57b70b-154a-4edf-91cb-ba209c237f84", + "queryName": "tooljetdbRollbackQuantity", + "parameters": {} + } + ], + "table_id": "3f453f43-f215-4e20-ae03-16c67cbbad8d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T22:38:32.468Z", + "updatedAt": "2023-09-13T05:11:25.703Z" + }, + { + "id": "b886a2d1-7aa7-4f9d-aefa-ae9246d7e513", + "name": "tooljetdbUpdateOrderStatus", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_orders", + "list_rows": {}, + "update_rows": { + "columns": { + "31": { + "column": "status", + "value": "{{components.kanban1.lastCardMovement.destinationColumnId}}" + } + }, + "where_filters": { + "30": { + "column": "id", + "operator": "eq", + "value": "{{components.kanban1.lastCardMovement.cardDetails.id}}", + "id": "30" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "{{\"Successfully updated status of order #\" + components.kanban1.lastCardMovement.cardDetails.id + \" to \\\"\" + ({order_placed: \"Order Placed\", shipped: \"Shipped\", delivered: \"Delivered\"})[components.kanban1.lastCardMovement.destinationColumnId] + '\"'}}", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "f65f0293-3ae4-4d84-9f81-bbde9285f06c", + "queryName": "tooljetdbGetOrders", + "parameters": {} + } + ], + "table_id": "2c85cdeb-a1c7-4287-b365-0ececf80876d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T23:12:19.524Z", + "updatedAt": "2023-09-13T05:11:25.715Z" + }, + { + "id": "bb6cf090-4745-4df4-bd9d-0ec7d5996b88", + "name": "getOrderStats", + "options": { + "code": "ordersPlaced = 0;\nordersShipped = 0;\nordersDelivered = 0;\nprevMonthSales = 0;\ncurrMonthSales = 0;\nprevYearSales = 0;\ncurrYearSales = 0;\n\nqueries.tooljetdbGetOrders.data.forEach((order) => {\n ordersPlaced += order.status == \"order_placed\" ? 1 : 0;\n ordersShipped += order.status == \"shipped\" ? 1 : 0;\n ordersDelivered += order.status == \"delivered\" ? 1 : 0;\n prevMonthSales +=\n moment(order.order_date).format(\"MM|YYYY\") ==\n moment().add(-1, \"month\").format(\"MM|YYYY\")\n ? order.total_price\n : 0;\n currMonthSales +=\n moment(order.order_date).format(\"MM|YYYY\") == moment().format(\"MM|YYYY\")\n ? order.total_price\n : 0;\n prevYearSales +=\n moment(order.order_date).format(\"YYYY\") ==\n moment().add(-1, \"year\").format(\"YYYY\")\n ? order.total_price\n : 0;\n currYearSales +=\n moment(order.order_date).format(\"YYYY\") == moment().format(\"YYYY\")\n ? order.total_price\n : 0;\n});\n\nreturn {\n ordersPlaced: ordersPlaced,\n ordersShipped: ordersShipped,\n ordersDelivered: ordersDelivered,\n prevMonthSales: parseFloat(prevMonthSales.toFixed(2)),\n currMonthSales: parseFloat(currMonthSales.toFixed(2)),\n monthlySalesDiffPercentage:\n prevMonthSales > 0\n ? parseFloat(\n (((currMonthSales - prevMonthSales) / prevMonthSales) * 100).toFixed(\n 2\n )\n )\n : 100,\n prevYearSales: parseFloat(prevYearSales.toFixed(2)),\n currYearSales: parseFloat(currYearSales.toFixed(2)),\n yearlySalesDiffPercentage:\n prevYearSales > 0\n ? parseFloat(\n (((currYearSales - prevYearSales) / prevYearSales) * 100).toFixed(2)\n )\n : 100,\n};\n\nqueries.tooljetdbGetOrders.data;", + "hasParamSupport": true, + "parameters": [] + }, + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-26T23:39:47.663Z", + "updatedAt": "2023-09-01T12:27:40.945Z" + }, + { + "id": "afe9a191-3598-4985-b558-5135b08a3be2", + "name": "getOrderStatsChartData", + "options": { + "code": "lastThreeMonths = [\n moment().add(-2, \"month\").format(\"MMM YYYY\"),\n moment().add(-1, \"month\").format(\"MMM YYYY\"),\n moment().format(\"MMM YYYY\"),\n];\n\nmonthlySalesData = {\n [lastThreeMonths[0]]: 0,\n [lastThreeMonths[1]]: 0,\n [lastThreeMonths[2]]: 0,\n};\n\nqueries.tooljetdbGetOrders.data.forEach((order) => {\n monthlySalesData[lastThreeMonths[0]] +=\n moment(order.order_date).format(\"MMM YYYY\") == lastThreeMonths[0]\n ? order.total_price\n : 0;\n monthlySalesData[lastThreeMonths[1]] +=\n moment(order.order_date).format(\"MMM YYYY\") == lastThreeMonths[1]\n ? order.total_price\n : 0;\n monthlySalesData[lastThreeMonths[2]] +=\n moment(order.order_date).format(\"MMM YYYY\") == lastThreeMonths[2]\n ? order.total_price\n : 0;\n});\n\nchartdata = lastThreeMonths.map((monthYear) => ({\n x: monthYear,\n y: monthlySalesData[monthYear],\n}));\n\nreturn chartdata;", + "hasParamSupport": true, + "parameters": [] + }, + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-27T00:14:38.836Z", + "updatedAt": "2023-08-27T00:34:18.848Z" + }, + { + "id": "edc2a168-cb72-405b-b83f-22efa54f05cf", + "name": "tooljetdbUpdateProduct", + "options": { + "operation": "update_rows", + "transformationLanguage": "javascript", + "enableTransformation": false, + "table_name": "supply_chain_products", + "list_rows": {}, + "update_rows": { + "columns": { + "0": { + "column": "quantity", + "value": "{{components.numberinput3.value}}" + }, + "1": { + "column": "price", + "value": "{{components.numberinput4.value}}" + }, + "4": { + "column": "status", + "value": "{{components.dropdown4.value}}" + } + }, + "where_filters": { + "1": { + "column": "id", + "operator": "eq", + "value": "{{components.dropdown3.value}}", + "id": "1" + } + } + }, + "events": [ + { + "eventId": "onDataQuerySuccess", + "actionId": "show-alert", + "message": "{{`Successfully updated product #${components.dropdown3.value}`}}", + "alertType": "success" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + { + "eventId": "onDataQuerySuccess", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + }, + { + "eventId": "onDataQueryFailure", + "actionId": "show-alert", + "message": "Failed to update product details! Please check and try again.", + "alertType": "warning" + } + ], + "table_id": "3f453f43-f215-4e20-ae03-16c67cbbad8d" + }, + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "createdAt": "2023-08-29T06:52:00.824Z", + "updatedAt": "2023-09-13T05:11:25.660Z" + } + ], + "dataSources": [ + { + "id": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "name": "runpydefault", + "kind": "runpy", + "type": "static", + "pluginId": null, + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:25:31.667Z", + "updatedAt": "2023-08-11T05:25:31.667Z" + }, + { + "id": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "name": "restapidefault", + "kind": "restapi", + "type": "static", + "pluginId": null, + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:25:31.667Z", + "updatedAt": "2023-08-11T05:25:31.667Z" + }, + { + "id": "987b720e-93e9-4470-bb4e-52c326c3e418", + "name": "runjsdefault", + "kind": "runjs", + "type": "static", + "pluginId": null, + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:25:31.667Z", + "updatedAt": "2023-08-11T05:25:31.667Z" + }, + { + "id": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "name": "tooljetdbdefault", + "kind": "tooljetdb", + "type": "static", + "pluginId": null, + "appVersionId": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "organizationId": null, + "scope": "local", + "createdAt": "2023-08-11T05:25:31.667Z", + "updatedAt": "2023-08-11T05:25:31.667Z" + } + ], + "appVersions": [ + { + "id": "de70d7c5-a4c5-46ca-baed-8d0375ffd9f3", + "name": "v1", + "definition": { + "showViewerNavigation": false, + "homePageId": "231b8e69-78b0-4463-8a50-06efbe933c4b", + "pages": { + "231b8e69-78b0-4463-8a50-06efbe933c4b": { + "components": { + "29584950-1289-47c1-8306-df17b8777f01": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text3", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 20, + "left": 4.651159429948642, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "0b9b018f-ac46-479c-97c0-320e1c138c67": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order no." + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 220, + "left": 9.302327558306544, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "d340bcf7-6e2a-44e8-962c-c458c6103fc6": { + "component": { + "properties": { + "data": { + "type": "code", + "displayName": "Tags", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object", + "object": { + "title": { + "type": "string" + }, + "color": { + "type": "string" + }, + "textColor": { + "type": "string" + } + } + } + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "data": { + "value": "{{ [ \n\t\t{ title: 'Delivered', color: '#2fb344', textColor: '#fff' } ] }}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "tags1", + "displayName": "Tags", + "description": "Content can be shown as tags", + "component": "Tags", + "defaultSize": { + "width": 8, + "height": 30 + }, + "exposedVariables": {} + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 20, + "left": 83.72093774482069, + "width": 3.9918377923171615, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "bb3d4f1c-4f07-43ae-91e7-ecd1cbf123eb": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order date" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 150, + "left": 9.30232558139535, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "9637e898-33b7-46fe-9757-48e6aa270fd2": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Billing address" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 280, + "left": 30.232566047179667, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "0fcdf89b-f1ab-4017-a633-124cc0d4277d": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipping address" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 200, + "left": 48.83720930232558, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "eac8ec41-01ce-479c-b18c-b03b68612c1e": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 300, + "left": 55.8139534883721, + "width": 13.953488372093023, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "ab0b2b1d-204f-4c9f-b8c1-4fa47e91c004": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total Amount" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "3320dccb-d80e-4a00-be7b-be890f50941b-modal", + "layouts": { + "desktop": { + "top": 139.9999885559082, + "left": 69.77529803286411, + "width": 10.000842132538706, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "a7ebf938-3a7b-46d4-8ce6-a31bd0fbd218": { + "id": "a7ebf938-3a7b-46d4-8ce6-a31bd0fbd218", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "My Dashboard" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 9.302325924067027, + "width": 12, + "height": 80 + } + } + }, + "bc32cea9-1351-417c-8fff-48e630e5d3be": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#F8F9FA", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 140, + "left": 9.30232558139535, + "width": 21, + "height": 660 + } + }, + "withDefaultChildren": false + }, + "3c045a1d-e3b8-41ea-bab1-dd5390068536": { + "id": "3c045a1d-e3b8-41ea-bab1-dd5390068536", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Sales Insights" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text13", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 6.976744186046511, + "width": 36, + "height": 40 + } + }, + "parent": "bc32cea9-1351-417c-8fff-48e630e5d3be" + }, + "2ab610aa-2c48-46a9-8f33-b9ae93af0a13": { + "id": "2ab610aa-2c48-46a9-8f33-b9ae93af0a13", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{queries.getOrderStats.data.monthlySalesDiffPercentage >= 0 ? \"#067A6F\" : \"#BD2100\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Sale this month" + }, + "primaryValue": { + "value": "{{queries?.getOrderStats?.data?.currMonthSales ?? 0}}" + }, + "secondaryValueLabel": { + "value": "Last month" + }, + "secondaryValue": { + "value": "{{queries?.getOrderStats?.data?.monthlySalesDiffPercentage ?? 0}}%" + }, + "secondarySignDisplay": { + "value": "{{queries.getOrderStats.data.monthlySalesDiffPercentage >= 0 ? \"positive\" : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics1", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 70, + "left": 7.750649728745978, + "width": 17, + "height": 160 + } + }, + "parent": "bc32cea9-1351-417c-8fff-48e630e5d3be" + }, + "636a7c35-58e7-47cf-8c29-4dbd563066b3": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity in hand" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "d06dcfa6-2693-4ca5-b87b-e01d176332ec", + "layouts": { + "desktop": { + "top": 0, + "left": 4.651102634372967, + "width": 26, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "a5ad1245-f2d0-4360-af79-df7c381de074": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "d06dcfa6-2693-4ca5-b87b-e01d176332ec", + "layouts": { + "desktop": { + "top": 0, + "left": 67.44186332462516, + "width": 3.0000000000000004, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "4d4aa614-829d-4b36-b8c7-b25d6b5976b4": { + "id": "4d4aa614-829d-4b36-b8c7-b25d6b5976b4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "55" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 76.74418604651163, + "width": 7.000000000000001, + "height": 30 + } + }, + "parent": "d06dcfa6-2693-4ca5-b87b-e01d176332ec" + }, + "b6970076-ab67-46c8-883e-e0a23bdf5ffc": { + "id": "b6970076-ab67-46c8-883e-e0a23bdf5ffc", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity to be received" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.8309963851264186, + "width": 27.397061520128858, + "height": 30 + } + }, + "parent": "ecba1eab-077d-4d6b-b2de-cbaaee455922" + }, + "d46a6a08-19e3-4b3d-aa2f-ddc2e04e856f": { + "id": "d46a6a08-19e3-4b3d-aa2f-ddc2e04e856f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider2", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "ecba1eab-077d-4d6b-b2de-cbaaee455922" + }, + "ce6e6ced-eb44-42b0-9e5b-188be6d1ce8a": { + "id": "ce6e6ced-eb44-42b0-9e5b-188be6d1ce8a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "28" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 80.74931115906885, + "width": 3.5439483803196463, + "height": 30 + } + }, + "parent": "ecba1eab-077d-4d6b-b2de-cbaaee455922" + }, + "f9d709a7-b54a-4615-b6df-b366c8774ad4": { + "id": "f9d709a7-b54a-4615-b6df-b366c8774ad4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Low in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.709215606855278, + "width": 18.081644554286207, + "height": 30 + } + }, + "parent": "759092d1-3ec0-4d96-88c9-110c213f89fd" + }, + "a839c3c1-be5d-49dc-a58d-b6dcb50695a0": { + "id": "a839c3c1-be5d-49dc-a58d-b6dcb50695a0", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider3", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "759092d1-3ec0-4d96-88c9-110c213f89fd" + }, + "08ec1334-e0c1-4fa5-844b-54c018c90fad": { + "id": "08ec1334-e0c1-4fa5-844b-54c018c90fad", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": "{{1.5}}" + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "8" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 83.40337009652839, + "width": 3.5439483803196463, + "height": 30 + } + }, + "parent": "759092d1-3ec0-4d96-88c9-110c213f89fd" + }, + "bdbf2bef-d89e-4669-b166-197778481b10": { + "id": "bdbf2bef-d89e-4669-b166-197778481b10", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Out of stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.709217866491207, + "width": 18.081644554286207, + "height": 30 + } + }, + "parent": "b3dd6ac9-1304-43a7-9c44-f5acc1c4482d" + }, + "f3f12ad6-a322-438f-9033-7d8317e48f5c": { + "id": "f3f12ad6-a322-438f-9033-7d8317e48f5c", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider4", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "b3dd6ac9-1304-43a7-9c44-f5acc1c4482d" + }, + "8c5d8b87-a4c1-43d2-84fc-b11a74c44124": { + "id": "8c5d8b87-a4c1-43d2-84fc-b11a74c44124", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "3" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 82.32660505353441, + "width": 3.9673764242215848, + "height": 30 + } + }, + "parent": "b3dd6ac9-1304-43a7-9c44-f5acc1c4482d" + }, + "a10e1f2f-27e0-41d2-a218-69726a42ef9f": { + "id": "a10e1f2f-27e0-41d2-a218-69726a42ef9f", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "json", + "displayName": "Data", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "markerColor": { + "type": "color", + "displayName": "Marker color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "showAxes": { + "type": "toggle", + "displayName": "Show axes", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showGridLines": { + "type": "toggle", + "displayName": "Show grid lines", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "type": { + "type": "select", + "displayName": "Chart type", + "options": [ + { + "name": "Line", + "value": "line" + }, + { + "name": "Bar", + "value": "bar" + }, + { + "name": "Pie", + "value": "pie" + } + ], + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "type": "number" + } + ] + } + } + }, + "jsonDescription": { + "type": "json", + "displayName": "Json Description", + "validation": { + "schema": { + "type": "string" + } + } + }, + "plotFromJson": { + "type": "toggle", + "displayName": "Use Plotly JSON schema", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "padding": { + "type": "code", + "displayName": "Padding", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "padding": { + "value": "25" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "" + }, + "markerColor": { + "value": "#32b9abff" + }, + "showAxes": { + "value": "{{true}}" + }, + "showGridLines": { + "value": "{{true}}" + }, + "plotFromJson": { + "value": "{{false}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStatsChartData.isLoading}}", + "fxActive": true + }, + "jsonDescription": { + "value": "{\n \"data\": [\n {\n \"x\": [\n \"Jan\",\n \"Feb\",\n \"Mar\"\n ],\n \"y\": [\n 100,\n 80,\n 40\n ],\n \"type\": \"bar\"\n }\n ]\n }" + }, + "type": { + "value": "line" + }, + "data": { + "value": "{{queries?.getOrderStatsChartData?.data??[]}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "chart1", + "displayName": "Chart", + "description": "Display charts", + "component": "Chart", + "defaultSize": { + "width": 20, + "height": 400 + }, + "exposedVariables": { + "show": null + } + }, + "layouts": { + "desktop": { + "top": 250, + "left": 7.436242903318993, + "width": 37, + "height": 370 + } + }, + "parent": "bc32cea9-1351-417c-8fff-48e630e5d3be" + }, + "29a9fd98-e5dc-4df1-901f-7e0d8e6cbfd8": { + "id": "29a9fd98-e5dc-4df1-901f-7e0d8e6cbfd8", + "component": { + "properties": { + "primaryValueLabel": { + "type": "code", + "displayName": "Primary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryValue": { + "type": "code", + "displayName": "Primary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideSecondary": { + "type": "toggle", + "displayName": "Hide secondary value", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "secondaryValueLabel": { + "type": "code", + "displayName": "Secondary value label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryValue": { + "type": "code", + "displayName": "Secondary value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondarySignDisplay": { + "type": "code", + "displayName": "Secondary sign display", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "primaryLabelColour": { + "type": "color", + "displayName": "Primary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "primaryTextColour": { + "type": "color", + "displayName": "Primary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryLabelColour": { + "type": "color", + "displayName": "Secondary Label Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "secondaryTextColour": { + "type": "color", + "displayName": "Secondary Text Colour", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "primaryLabelColour": { + "value": "#8092AB" + }, + "primaryTextColour": { + "value": "#000000" + }, + "secondaryLabelColour": { + "value": "#8092AB" + }, + "secondaryTextColour": { + "value": "{{queries.getOrderStats.data.yearlySalesDiffPercentage >= 0 ? \"#067A6F\" : \"#BD2100\"}}", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "primaryValueLabel": { + "value": "Sale this year" + }, + "primaryValue": { + "value": "{{queries?.getOrderStats?.data?.currYearSales ?? 0}}" + }, + "secondaryValueLabel": { + "value": "Last year" + }, + "secondaryValue": { + "value": "{{queries?.getOrderStats?.data?.yearlySalesDiffPercentage ?? 0}}%" + }, + "secondarySignDisplay": { + "value": "{{queries.getOrderStats.data.yearlySalesDiffPercentage >= 0 ? \"positive\" : \"negative\"}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + }, + "hideSecondary": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "statistics2", + "displayName": "Statistics", + "description": "Statistics can be used to display different statistical information", + "component": "Statistics", + "defaultSize": { + "width": 9.2, + "height": 152 + }, + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 70, + "left": 51.0615590762841, + "width": 18, + "height": 160 + } + }, + "parent": "bc32cea9-1351-417c-8fff-48e630e5d3be" + }, + "2ced482a-b79f-4aa4-99a1-eddccc3224df": { + "id": "2ced482a-b79f-4aa4-99a1-eddccc3224df", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Orders placed" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.830981507056605, + "width": 27.397061520128858, + "height": 30 + } + }, + "parent": "bde8dec6-404e-4cb7-8541-c22dac506785" + }, + "17030d46-0772-4e23-91d7-089bf2e2eb60": { + "id": "17030d46-0772-4e23-91d7-089bf2e2eb60", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider6", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "bde8dec6-404e-4cb7-8541-c22dac506785" + }, + "c4ba83cd-1eb0-451a-8331-1508af98af08": { + "id": "c4ba83cd-1eb0-451a-8331-1508af98af08", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "28" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 80.74931115906885, + "width": 3.5439483803196463, + "height": 30 + } + }, + "parent": "bde8dec6-404e-4cb7-8541-c22dac506785" + }, + "01ecec83-9430-4c38-a733-cb7141c2fa94": { + "id": "01ecec83-9430-4c38-a733-cb7141c2fa94", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipped" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.7092027364056217, + "width": 18.081644554286207, + "height": 30 + } + }, + "parent": "ac9432ba-a6ef-4eac-b9db-9cd33c80369b" + }, + "162f962a-70f0-468a-a265-50dbccbe01d4": { + "id": "162f962a-70f0-468a-a265-50dbccbe01d4", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider7", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "ac9432ba-a6ef-4eac-b9db-9cd33c80369b" + }, + "0b2c89bf-af06-44b1-8d0a-a03f90376f33": { + "id": "0b2c89bf-af06-44b1-8d0a-a03f90376f33", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "8" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 83.07487059984553, + "width": 3.5439483803196463, + "height": 30 + } + }, + "parent": "ac9432ba-a6ef-4eac-b9db-9cd33c80369b" + }, + "6129de2a-c36c-44cd-bc74-7b04ae2961c5": { + "id": "6129de2a-c36c-44cd-bc74-7b04ae2961c5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Delivered" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 3.709243197354715, + "width": 18.081644554286207, + "height": 30 + } + }, + "parent": "baa25360-3e77-4411-ad03-1c70bb95c5b9" + }, + "97aba050-1ef5-4b3a-8b38-e2559f6b5f39": { + "id": "97aba050-1ef5-4b3a-8b38-e2559f6b5f39", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider8", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 0, + "left": 67.84922433452391, + "width": 4.368877428096383, + "height": 30 + } + }, + "parent": "baa25360-3e77-4411-ad03-1c70bb95c5b9" + }, + "c71a2372-d509-47f1-9377-e761a14e0ed2": { + "id": "c71a2372-d509-47f1-9377-e761a14e0ed2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "3" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text31", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 82.32660505353441, + "width": 3.9673764242215848, + "height": 30 + } + }, + "parent": "baa25360-3e77-4411-ad03-1c70bb95c5b9" + }, + "19d85490-0014-40fb-8674-ef9c73aebcb7": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000", + "fxActive": false + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "capitalize" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": "{{5}}" + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{(globals?.currentUser?.firstName??\"\") + \" \" + (globals?.currentUser?.lastName??\"\")}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text32", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 39.99999237060547, + "left": 58.13953661715651, + "width": 14.999999999999998, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "49d5612c-7af1-43d6-8a1b-141dc46fb388": { + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "logout", + "message": "Hello world!", + "alertType": "info" + } + ], + "styles": { + "iconColor": { + "value": "#067A6F", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconPower" + } + }, + "general": { + "tooltip": { + "value": "Logout" + } + }, + "exposedVariables": {} + }, + "name": "icon4", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 93.0232558139535, + "width": 2, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ff1ef5b1-e789-4505-bbcc-3c2957c95593": { + "id": "ff1ef5b1-e789-4505-bbcc-3c2957c95593", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffff", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "oblique" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipzy" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text33", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 5.17308808632651, + "width": 35.755014739527255, + "height": 30 + } + }, + "parent": "2e557982-4a1a-42d8-b5a6-442abfb0c79e" + }, + "c7cfdef9-91bb-4fee-97f9-456a387dc299": { + "id": "c7cfdef9-91bb-4fee-97f9-456a387dc299", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon5", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 50, + "left": 29.728489968899588, + "width": 12.853332781041193, + "height": 30 + } + }, + "parent": "2e557982-4a1a-42d8-b5a6-442abfb0c79e" + }, + "25edeadc-4a55-4277-943b-93f9d3889120": { + "id": "25edeadc-4a55-4277-943b-93f9d3889120", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconBoxSeam" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon6", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 90, + "left": 30.23256304826526, + "width": 12.853332781041193, + "height": 30 + } + }, + "parent": "2e557982-4a1a-42d8-b5a6-442abfb0c79e" + }, + "a115a54c-5c85-4f3e-85c4-eb1121e2fcd3": { + "id": "a115a54c-5c85-4f3e-85c4-eb1121e2fcd3", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconShoppingCart" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon7", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 130, + "left": 31.958450815081264, + "width": 12.24061987889269, + "height": 30 + } + }, + "parent": "2e557982-4a1a-42d8-b5a6-442abfb0c79e" + }, + "bcacb2e1-d2a7-4195-aa44-8106ab527873": { + "id": "bcacb2e1-d2a7-4195-aa44-8106ab527873", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#067a6fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 110, + "left": 9.30232558139535, + "width": 38, + "height": 10 + } + } + }, + "82753f8c-19a9-4297-a56b-3f880c7e99f2": { + "id": "82753f8c-19a9-4297-a56b-3f880c7e99f2", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#F8F9FA", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container14", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 140, + "left": 60.465110052482935, + "width": 16, + "height": 340 + } + } + }, + "9f86dfbc-ffa3-4f1f-a163-eb1e366cdf49": { + "id": "9f86dfbc-ffa3-4f1f-a163-eb1e366cdf49", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Inventory Summary" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text34", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 6.976744186046511, + "width": 35.99999999999999, + "height": 40 + } + }, + "parent": "82753f8c-19a9-4297-a56b-3f880c7e99f2" + }, + "d33665f3-f958-48a7-8990-b35c2946872f": { + "id": "d33665f3-f958-48a7-8990-b35c2946872f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container15", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 70, + "left": 6.976745661788449, + "width": 35.99999999999999, + "height": 230 + } + }, + "parent": "82753f8c-19a9-4297-a56b-3f880c7e99f2" + }, + "3148984e-ae18-4fec-9815-b42234f380dd": { + "id": "3148984e-ae18-4fec-9815-b42234f380dd", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity in hand" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text35", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651141011224977, + "width": 26.999999999999996, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "d38ad397-addc-4e3b-93fc-d2334424d94e": { + "id": "d38ad397-addc-4e3b-93fc-d2334424d94e", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider9", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 20, + "left": 69.76744186046511, + "width": 3, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "cba724e4-3c91-43d2-82f0-cf5e9ff51c06": { + "id": "cba724e4-3c91-43d2-82f0-cf5e9ff51c06", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text36", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 79.06977368285324, + "width": 7, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "c74e908f-c10d-4ab7-a01c-837533e12aa8": { + "id": "c74e908f-c10d-4ab7-a01c-837533e12aa8", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity to be received" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text37", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 4.651164587745595, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "b5c3c2a1-683c-4a37-aaae-47bf2a284e0f": { + "id": "b5c3c2a1-683c-4a37-aaae-47bf2a284e0f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider10", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 70, + "left": 69.76745250630597, + "width": 3, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "e4fa5fb1-03a0-43f9-a91f-727e8393d4d6": { + "id": "e4fa5fb1-03a0-43f9-a91f-727e8393d4d6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityYetToReceive ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text38", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 79.06976907002613, + "width": 7, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "4196ad82-8199-4f6b-88d3-26ab9f2e3f99": { + "id": "4196ad82-8199-4f6b-88d3-26ab9f2e3f99", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Low in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text39", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 4.651173436538534, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "91a9be9b-038c-411f-bb28-304652a62ac4": { + "id": "91a9be9b-038c-411f-bb28-304652a62ac4", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider11", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 120, + "left": 69.76746599333187, + "width": 3, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "8068b06a-6b92-493d-b9fc-994d3589f0f0": { + "id": "8068b06a-6b92-493d-b9fc-994d3589f0f0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": "{{1.5}}" + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.lowInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text40", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 79.06975455817971, + "width": 7, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "c1c440b8-ce0c-42b8-9d85-755f4523625a": { + "id": "c1c440b8-ce0c-42b8-9d85-755f4523625a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Out of stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text41", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 170, + "left": 4.651157711672741, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "eb4ce0c5-99cf-4a86-880f-5cd95385199b": { + "id": "eb4ce0c5-99cf-4a86-880f-5cd95385199b", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider12", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 170, + "left": 69.76745534749101, + "width": 3, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "14c7c18d-f4f0-4cc6-9520-1ded13652e7e": { + "id": "14c7c18d-f4f0-4cc6-9520-1ded13652e7e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.outOfStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text42", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 170, + "left": 79.06978127377667, + "width": 7, + "height": 30 + } + }, + "parent": "d33665f3-f958-48a7-8990-b35c2946872f" + }, + "8bad0de3-2e06-4918-9054-af2a0787a679": { + "id": "8bad0de3-2e06-4918-9054-af2a0787a679", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": false + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container13", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0.000008843790809009988, + "width": 3, + "height": 890 + } + } + }, + "84b02a6b-a193-421d-ac42-f6fe3ecf2535": { + "id": "84b02a6b-a193-421d-ac42-f6fe3ecf2535", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffff", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "oblique" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipzy" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text43", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 0.3960462227705383, + "width": 40.044005054566775, + "height": 30 + } + }, + "parent": "8bad0de3-2e06-4918-9054-af2a0787a679" + }, + "ab5dd87a-3981-4736-a316-0b86aa49dd12": { + "id": "ab5dd87a-3981-4736-a316-0b86aa49dd12", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 2px #ffffffff", + "fxActive": false + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon8", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60.000003814697266, + "left": 27.906969633912347, + "width": 16, + "height": 40 + } + }, + "parent": "8bad0de3-2e06-4918-9054-af2a0787a679" + }, + "cfd79a0d-7162-4527-9190-7cff81a69b53": { + "id": "cfd79a0d-7162-4527-9190-7cff81a69b53", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "27be7952-16b7-4dd2-922b-14670240551d" + } + ], + "styles": { + "iconColor": { + "value": "#ffffffff", + "fxActive": false + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconBoxSeam" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon9", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120.0000114440918, + "left": 27.906980092859104, + "width": 16, + "height": 40 + } + }, + "parent": "8bad0de3-2e06-4918-9054-af2a0787a679" + }, + "f9b2026f-e3e1-4e50-8004-9af62a32bf63": { + "id": "f9b2026f-e3e1-4e50-8004-9af62a32bf63", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "af8375fb-ce8f-41b1-9fd7-f907a50f0985" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000033" + } + }, + "properties": { + "icon": { + "value": "IconShoppingCart" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon10", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180.00002670288086, + "left": 27.90696197171283, + "width": 16, + "height": 40 + } + }, + "parent": "8bad0de3-2e06-4918-9054-af2a0787a679" + }, + "567515b9-6a5c-41b1-8a07-e6af54752bd2": { + "id": "567515b9-6a5c-41b1-8a07-e6af54752bd2", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#F8F9FA", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040", + "fxActive": false + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container16", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 510, + "left": 60.465119325040234, + "width": 16, + "height": 290 + } + } + }, + "61581914-f4eb-42f5-9cff-655d5ffa6425": { + "id": "61581914-f4eb-42f5-9cff-655d5ffa6425", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Current Order Status Summary" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text44", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 6.9767384752319614, + "width": 35.99999999999999, + "height": 40 + } + }, + "parent": "567515b9-6a5c-41b1-8a07-e6af54752bd2" + }, + "e92374ba-b343-4ebd-a7f8-bae8427a9f54": { + "id": "e92374ba-b343-4ebd-a7f8-bae8427a9f54", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff" + }, + "borderRadius": { + "value": "10" + }, + "borderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container17", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 70, + "left": 6.976747326276474, + "width": 35.99999999999999, + "height": 180 + } + }, + "parent": "567515b9-6a5c-41b1-8a07-e6af54752bd2" + }, + "713775dd-4bf0-440f-a2dc-67ddb2508e7e": { + "id": "713775dd-4bf0-440f-a2dc-67ddb2508e7e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Orders placed" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text45", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651156738711118, + "width": 26.999999999999996, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "34cfc5a2-dd75-4460-a6f1-27a2d310cda4": { + "id": "34cfc5a2-dd75-4460-a6f1-27a2d310cda4", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider13", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 20, + "left": 69.7674340558093, + "width": 3.0000000000000004, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "485b8f80-1b37-44fa-9c4f-f6748a4a4071": { + "id": "485b8f80-1b37-44fa-9c4f-f6748a4a4071", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getOrderStats?.data?.ordersPlaced ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text46", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 79.06974137162038, + "width": 7, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "afcf8218-d46e-470c-aa5a-3f5073e8ba33": { + "id": "afcf8218-d46e-470c-aa5a-3f5073e8ba33", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipped" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text47", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 4.651156733851276, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "50662f68-86a2-4b8e-b95d-d4b6b8853ba5": { + "id": "50662f68-86a2-4b8e-b95d-d4b6b8853ba5", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider14", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 70, + "left": 69.76745250630597, + "width": 3, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "98ec489a-22e6-4c6a-a8c9-1536db1bd5d1": { + "id": "98ec489a-22e6-4c6a-a8c9-1536db1bd5d1", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getOrderStats?.data?.ordersShipped ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text48", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 70, + "left": 79.06977860136558, + "width": 7, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "869163aa-7e63-452b-b887-0952e1d27d0d": { + "id": "869163aa-7e63-452b-b887-0952e1d27d0d", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider15", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 120, + "left": 69.76746599333187, + "width": 3, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "7033b773-25b5-4b85-8275-ec00c0a65d94": { + "id": "7033b773-25b5-4b85-8275-ec00c0a65d94", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Delivered" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text49", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 4.651217296404449, + "width": 27.000000000000004, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + }, + "f0bcbdbe-0b4c-4435-8464-409209d67060": { + "id": "f0bcbdbe-0b4c-4435-8464-409209d67060", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getOrderStats?.data?.ordersDelivered ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetOrders.isLoading || queries.getOrderStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text50", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 79.06978824575117, + "width": 7, + "height": 30 + } + }, + "parent": "e92374ba-b343-4ebd-a7f8-bae8427a9f54" + } + }, + "handle": "home", + "name": "Home", + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "f65f0293-3ae4-4d84-9f81-bbde9285f06c", + "queryName": "tooljetdbGetOrders", + "parameters": {} + }, + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ] + }, + "27be7952-16b7-4dd2-922b-14670240551d": { + "name": "Product Inventory", + "handle": "Product Inventory", + "components": { + "acff592d-3dde-485a-8a9a-d7cf17c677ac": { + "id": "acff592d-3dde-485a-8a9a-d7cf17c677ac", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container1", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": -0.000008380352699788318, + "width": 3, + "height": 890 + } + } + }, + "6a844085-f60a-46ee-9649-d8c14d8652cb": { + "id": "6a844085-f60a-46ee-9649-d8c14d8652cb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffff", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "oblique" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipzy" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text1", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 0.3960462227705383, + "width": 40.044005054566775, + "height": 30 + } + }, + "parent": "acff592d-3dde-485a-8a9a-d7cf17c677ac" + }, + "e4a40b72-1a6e-4037-9d83-88f88fefc0e7": { + "id": "e4a40b72-1a6e-4037-9d83-88f88fefc0e7", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "231b8e69-78b0-4463-8a50-06efbe933c4b" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 27.906976744186046, + "width": 16, + "height": 40 + } + }, + "parent": "acff592d-3dde-485a-8a9a-d7cf17c677ac" + }, + "428f958b-af0f-4c6d-80a9-bd665fb129c1": { + "id": "428f958b-af0f-4c6d-80a9-bd665fb129c1", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 2px #ffffffff", + "fxActive": false + } + }, + "properties": { + "icon": { + "value": "IconBoxSeam" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 119.99996185302734, + "left": 27.906968327561362, + "width": 16, + "height": 40 + } + }, + "parent": "acff592d-3dde-485a-8a9a-d7cf17c677ac" + }, + "9257194e-cc75-47cb-bf83-e9629d3bb853": { + "id": "9257194e-cc75-47cb-bf83-e9629d3bb853", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "af8375fb-ce8f-41b1-9fd7-f907a50f0985" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconShoppingCart" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon3", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 27.90698139921009, + "width": 16, + "height": 40 + } + }, + "parent": "acff592d-3dde-485a-8a9a-d7cf17c677ac" + }, + "5932e45d-c225-44b6-9779-f4a26d0809d0": { + "id": "5932e45d-c225-44b6-9779-f4a26d0809d0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Inventory" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text2", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 9.302334304419727, + "width": 13, + "height": 80 + } + } + }, + "ec624665-b235-4245-a7ae-81ac1b6509b5": { + "id": "ec624665-b235-4245-a7ae-81ac1b6509b5", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#067a6fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 110, + "left": 9.366218077400182, + "width": 38, + "height": 10 + } + } + }, + "92aae4a4-01eb-47d5-91a6-bc7775c95814": { + "id": "92aae4a4-01eb-47d5-91a6-bc7775c95814", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container2", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 62.7906976744186, + "width": 4, + "height": 80 + } + } + }, + "182e8cff-88f6-4670-870d-8215c79d4f89": { + "id": "182e8cff-88f6-4670-870d-8215c79d4f89", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Qty in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text3", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "92aae4a4-01eb-47d5-91a6-bc7775c95814" + }, + "831f20fe-64d4-47b2-96d0-04017af2845c": { + "id": "831f20fe-64d4-47b2-96d0-04017af2845c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text4", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "92aae4a4-01eb-47d5-91a6-bc7775c95814" + }, + "ff942281-a78c-46cd-9e9f-7142490cb42a": { + "id": "ff942281-a78c-46cd-9e9f-7142490cb42a", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container3", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 86.04651162790697, + "width": 4, + "height": 80 + } + } + }, + "98eac07a-ae23-4d79-91af-63eed54b1de7": { + "id": "98eac07a-ae23-4d79-91af-63eed54b1de7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": true + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Out of stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "ff942281-a78c-46cd-9e9f-7142490cb42a" + }, + "25e5f7af-067d-4fa6-895f-c0ebd812dcc6": { + "id": "25e5f7af-067d-4fa6-895f-c0ebd812dcc6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#d0021bff", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.outOfStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "ff942281-a78c-46cd-9e9f-7142490cb42a" + }, + "34df246c-35d6-4407-9c85-f3ce9bdc1909": { + "id": "34df246c-35d6-4407-9c85-f3ce9bdc1909", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container4", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 51.16279069767442, + "width": 4, + "height": 80 + } + } + }, + "7a1f6a20-8dbf-42c1-8c14-568f523c0362": { + "id": "7a1f6a20-8dbf-42c1-8c14-568f523c0362", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Qty in total" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 1.0703999561029032, + "width": 39.82871933627176, + "height": 30 + } + }, + "parent": "34df246c-35d6-4407-9c85-f3ce9bdc1909" + }, + "e16653fb-7bcb-404c-8f7a-4fc1310cb928": { + "id": "e16653fb-7bcb-404c-8f7a-4fc1310cb928", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.quantityInTotal ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text8", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "34df246c-35d6-4407-9c85-f3ce9bdc1909" + }, + "bda85f11-39c0-40d3-ba35-bfd0211fea6f": { + "id": "bda85f11-39c0-40d3-ba35-bfd0211fea6f", + "component": { + "properties": { + "title": { + "type": "string", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "data": { + "type": "code", + "displayName": "Table data", + "validation": { + "schema": { + "type": "array", + "element": { + "type": "object" + }, + "optional": true + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columns": { + "type": "array", + "displayName": "Table Columns" + }, + "useDynamicColumn": { + "type": "toggle", + "displayName": "Use dynamic column", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "columnData": { + "type": "code", + "displayName": "Column data" + }, + "rowsPerPage": { + "type": "code", + "displayName": "Number of rows per page", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "serverSidePagination": { + "type": "toggle", + "displayName": "Server-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enableNextButton": { + "type": "toggle", + "displayName": "Enable next page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enabledSort": { + "type": "toggle", + "displayName": "Enable sorting", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "hideColumnSelectorButton": { + "type": "toggle", + "displayName": "Hide column selector button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "enablePrevButton": { + "type": "toggle", + "displayName": "Enable previous page button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "totalRecords": { + "type": "code", + "displayName": "Total records server side", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "clientSidePagination": { + "type": "toggle", + "displayName": "Client-side pagination", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSearch": { + "type": "toggle", + "displayName": "Server-side search", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideSort": { + "type": "toggle", + "displayName": "Server-side sort", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "serverSideFilter": { + "type": "toggle", + "displayName": "Server-side filter", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "actionButtonBackgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonTextColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "displaySearchBox": { + "type": "toggle", + "displayName": "Show search box", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showDownloadButton": { + "type": "toggle", + "displayName": "Show download button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showFilterButton": { + "type": "toggle", + "displayName": "Show filter button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkUpdateActions": { + "type": "toggle", + "displayName": "Show update buttons", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "showBulkSelector": { + "type": "toggle", + "displayName": "Bulk selection", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "highlightSelectedRow": { + "type": "toggle", + "displayName": "Highlight selected row", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop " + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onRowHovered": { + "displayName": "Row hovered" + }, + "onRowClicked": { + "displayName": "Row clicked" + }, + "onBulkUpdate": { + "displayName": "Save changes" + }, + "onPageChanged": { + "displayName": "Page changed" + }, + "onSearch": { + "displayName": "Search" + }, + "onCancelChanges": { + "displayName": "Cancel changes" + }, + "onSort": { + "displayName": "Sort applied" + }, + "onCellValueChanged": { + "displayName": "Cell value changed" + }, + "onFilterChanged": { + "displayName": "Filter changed" + }, + "onNewRowsAdded": { + "displayName": "Add new rows" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "actionButtonRadius": { + "type": "code", + "displayName": "Action Button Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + } + } + }, + "tableType": { + "type": "select", + "displayName": "Table type", + "options": [ + { + "name": "Bordered", + "value": "table-bordered" + }, + { + "name": "Regular", + "value": "table-classic" + }, + { + "name": "Striped", + "value": "table-striped" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "cellSize": { + "type": "select", + "displayName": "Cell size", + "options": [ + { + "name": "Condensed", + "value": "condensed" + }, + { + "name": "Regular", + "value": "regular" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "actionButtonRadius": { + "value": "0" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "cellSize": { + "value": "regular" + }, + "borderRadius": { + "value": "10" + }, + "tableType": { + "value": "table-classic" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Table" + }, + "visible": { + "value": "{{true}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + }, + "data": { + "value": "{{queries.tooljetdbGetProducts.data}}" + }, + "useDynamicColumn": { + "value": "{{false}}" + }, + "columnData": { + "value": "{{[{name: 'email', key: 'email'}, {name: 'Full name', key: 'name', isEditable: true}]}}" + }, + "rowsPerPage": { + "value": "{{20}}" + }, + "serverSidePagination": { + "value": "{{false}}" + }, + "enableNextButton": { + "value": "{{true}}" + }, + "enablePrevButton": { + "value": "{{true}}" + }, + "totalRecords": { + "value": "" + }, + "clientSidePagination": { + "value": "{{true}}" + }, + "serverSideSort": { + "value": "{{false}}" + }, + "serverSideFilter": { + "value": "{{false}}" + }, + "displaySearchBox": { + "value": "{{false}}" + }, + "showDownloadButton": { + "value": "{{true}}" + }, + "showFilterButton": { + "value": "{{true}}" + }, + "autogenerateColumns": { + "value": true + }, + "columns": { + "value": [ + { + "name": "id", + "id": "78c599af-628d-41a5-8da0-02f40f4b0cfd" + }, + { + "id": "9dd40d5e-36f2-4257-8fc0-9fec788fe025", + "name": "product_name", + "key": "product_name", + "columnType": "string", + "autogenerated": true + }, + { + "id": "6fcb6fac-ad92-4a9d-8473-f47818129a85", + "name": "quantity", + "key": "quantity", + "columnType": "number", + "autogenerated": true, + "isEditable": "{{false}}" + }, + { + "id": "8f97e3b2-69d2-44c4-b301-05f6f6c0afff", + "name": "price", + "key": "price", + "columnType": "string", + "autogenerated": true + }, + { + "id": "935cf13c-6101-4fae-a9ef-d4bb6a396fb2", + "name": "status", + "key": "status", + "columnType": "string", + "autogenerated": true + }, + { + "id": "68977f9a-fb0a-4f7b-85f2-cc5b11a2a0cb", + "name": "category", + "key": "category", + "columnType": "string", + "autogenerated": true + }, + { + "id": "9de6c6a2-512b-45e8-8c80-d2d8271976af", + "name": "description", + "key": "description", + "columnType": "string", + "autogenerated": true + } + ] + }, + "showBulkUpdateActions": { + "value": "{{false}}" + }, + "showBulkSelector": { + "value": "{{false}}" + }, + "highlightSelectedRow": { + "value": "{{false}}" + }, + "columnSizes": { + "value": { + "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 39, + "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 143, + "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 370, + "d7ef4587-d597-44fe-a09f-1e8a5afe7ebd": 161, + "80a7c021-1406-495f-98d2-c8b1789748d6": 169, + "e7828dc4-90f6-4a60-aadb-58356278dff9": 70, + "aa56b72c-5246-47a7-800d-b19a7208970a": 281, + "01397da4-b41e-4540-aec5-440e70fd38d5": 381, + "9de6c6a2-512b-45e8-8c80-d2d8271976af": 335, + "4193a446-2519-454c-9ade-d468ce8e0acb": 89, + "6fcb6fac-ad92-4a9d-8473-f47818129a85": 78, + "935cf13c-6101-4fae-a9ef-d4bb6a396fb2": 117, + "8f97e3b2-69d2-44c4-b301-05f6f6c0afff": 83, + "78c599af-628d-41a5-8da0-02f40f4b0cfd": 35, + "68977f9a-fb0a-4f7b-85f2-cc5b11a2a0cb": 137 + } + }, + "actions": { + "value": [] + }, + "enabledSort": { + "value": "{{true}}" + }, + "hideColumnSelectorButton": { + "value": "{{false}}" + }, + "columnDeletionHistory": { + "value": [ + "email", + "Assigned to", + "Quantity", + "Status", + "product description", + "id" + ] + }, + "showAddNewRowButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "table1", + "displayName": "Table", + "description": "Display paginated tabular data", + "component": "Table", + "defaultSize": { + "width": 20, + "height": 358 + }, + "exposedVariables": { + "selectedRow": {}, + "changeSet": {}, + "dataUpdates": [], + "pageIndex": 1, + "searchText": "", + "selectedRows": [], + "filters": [] + }, + "actions": [ + { + "handle": "setPage", + "displayName": "Set page", + "params": [ + { + "handle": "page", + "displayName": "Page", + "defaultValue": "{{1}}" + } + ] + }, + { + "handle": "selectRow", + "displayName": "Select row", + "params": [ + { + "handle": "key", + "displayName": "Key" + }, + { + "handle": "value", + "displayName": "Value" + } + ] + }, + { + "handle": "deselectRow", + "displayName": "Deselect row" + }, + { + "handle": "discardChanges", + "displayName": "Discard Changes" + }, + { + "handle": "discardNewlyAddedRows", + "displayName": "Discard newly added rows" + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 9.302327450061197, + "width": 38, + "height": 640 + } + } + }, + "387652f3-ee37-4e31-9120-72477abbce76": { + "id": "387652f3-ee37-4e31-9120-72477abbce76", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#f8f9faff" + }, + "borderRadius": { + "value": "5" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container5", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 20, + "left": 74.4186046511628, + "width": 4, + "height": 80 + } + } + }, + "176ae964-096c-4052-83f2-35f5a778bca4": { + "id": "176ae964-096c-4052-83f2-35f5a778bca4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{12}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Low in stock" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "387652f3-ee37-4e31-9120-72477abbce76" + }, + "059251fb-ae99-4dea-a36a-38ce66bd531c": { + "id": "059251fb-ae99-4dea-a36a-38ce66bd531c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "" + }, + "textColor": { + "value": "#FFB224", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{queries?.getProductStats?.data?.lowInStock ?? 0}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading || queries.getProductStats.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text10", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 0, + "width": 41, + "height": 30 + } + }, + "parent": "387652f3-ee37-4e31-9120-72477abbce76" + }, + "a8bd06f7-bdca-4b54-a4de-8e9c7a9116c1": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onEnterPressed", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#067a6fff" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Search" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 9.236311947347682, + "width": 10, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "8a505dbb-c0d0-4298-85a9-91dbd473e28b": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": false + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#375fcf00" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Search" + }, + "loadingState": { + "value": "{{components.textinput1.value != \"\" && queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 32.55813991563003, + "width": 4, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "e70226f2-0985-4145-9fb4-d8355258b0c5": { + "id": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#067A6F", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Add a Product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{true}}" + }, + "triggerButtonLabel": { + "value": "Add a Product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "490px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal1", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 400 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 140.0000114440918, + "left": 81.39536539659488, + "width": 8, + "height": 40 + } + } + }, + "5d0ed3c3-5679-4ad7-9282-8910827889fa": { + "id": "5d0ed3c3-5679-4ad7-9282-8910827889fa", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "d06b38dc-e054-4ed1-8e05-294b2a4ce3a7", + "queryName": "tooljetdbAddProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#375fcf00" + }, + "disabledState": { + "value": "{{components.textinput4.value.length < 1 || components.numberinput1.value == 0 || components.numberinput2.value == 0 || components.dropdown1.value == undefined || components.dropdown2.value == undefined || components.textarea2.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Add product" + }, + "loadingState": { + "value": "{{queries.tooljetdbAddProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420, + "left": 79.06980320572954, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "ba1e39b1-62cd-4c2a-953a-3ff1c96feaac": { + "id": "ba1e39b1-62cd-4c2a-953a-3ff1c96feaac", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "e70226f2-0985-4145-9fb4-d8355258b0c5" + } + ], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#067a6fff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button3", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 420.0000114440918, + "left": 65.08360343565805, + "width": 5.026685393258427, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "ac425c6b-770e-4d8f-ba4b-1161ce72f665": { + "id": "ac425c6b-770e-4d8f-ba4b-1161ce72f665", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text11", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651165309322714, + "width": 6, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "3085d2cc-d42a-4fe5-8bf9-da4baefa2048": { + "id": "3085d2cc-d42a-4fe5-8bf9-da4baefa2048", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text12", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651153864920198, + "width": 15, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "2c8fbdb8-36a9-48ed-981d-044086f48d6f": { + "id": "2c8fbdb8-36a9-48ed-981d-044086f48d6f", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 140, + "left": 51.162797507362264, + "width": 1, + "height": 100 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "31b32887-f5ce-43a0-a439-3547dd1f8775": { + "id": "31b32887-f5ce-43a0-a439-3547dd1f8775", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text14", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 4.651165309322714, + "width": 6, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "429f6f5a-1962-493c-9fc0-e5abd73df999": { + "id": "429f6f5a-1962-493c-9fc0-e5abd73df999", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 55.81395601497142, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "1a8ac421-59f2-49b9-b5c2-ea8caa3e6fe0": { + "id": "1a8ac421-59f2-49b9-b5c2-ea8caa3e6fe0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Description" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 260, + "left": 4.651161834165184, + "width": 14.943668648140722, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "3362f3ca-5134-4e19-8f06-7b27d1fd942e": { + "id": "3362f3ca-5134-4e19-8f06-7b27d1fd942e", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{6}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter product description..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea2", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 300, + "left": 4.651136974853472, + "width": 39.00000000000001, + "height": 100 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "e5409124-b033-4c2f-91d1-6dba1a938395": { + "id": "e5409124-b033-4c2f-91d1-6dba1a938395", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 4.6511633831521735, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "5f3ead84-8a42-40b3-b3e6-46ec994a7594": { + "id": "5f3ead84-8a42-40b3-b3e6-46ec994a7594", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter product name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput4", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 80, + "left": 20.930224518216153, + "width": 32, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "64931418-c1f1-4a80-b0d6-989ed7e7d7b3": { + "id": "64931418-c1f1-4a80-b0d6-989ed7e7d7b3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Category" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 55.813958117806976, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "0d0efc13-ae0e-4e1f-8d90-c8c508487fef": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{['in_stock', 'yet_to_receive']}}" + }, + "display_values": { + "value": "{{['In stock', 'Yet to receive']}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "layouts": { + "desktop": { + "top": 140, + "left": 67.44186148616947, + "width": 12.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "5caec9ab-5eea-42be-bfb0-4a3783b388e9": { + "id": "5caec9ab-5eea-42be-bfb0-4a3783b388e9", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{[\"apparel\",\"appliances\",\"beverage\",\"electronics\",\"food\",\"furniture\",\"software\"]}}" + }, + "display_values": { + "value": "{{[\"Apparel\",\"Appliances\",\"Beverage\",\"Electronics\",\"Food\",\"Furniture\",\"Software\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select category..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 67.44185877271795, + "width": 12.000000000000002, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "5086fc5a-b6db-4b6d-b3b0-fd362c7a8bd2": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{0}}" + }, + "maxValue": { + "value": "1000" + }, + "minValue": { + "value": "1" + }, + "placeholder": { + "value": "Enter quantity" + }, + "decimalPlaces": { + "value": "{{0}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput1", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5", + "layouts": { + "desktop": { + "top": 140, + "left": 20.93022040961086, + "width": 12, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "5dcf6696-566a-44e6-a65d-1a5f6e9a453f": { + "id": "5dcf6696-566a-44e6-a65d-1a5f6e9a453f", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "0" + }, + "maxValue": { + "value": "999999" + }, + "minValue": { + "value": "0.50" + }, + "placeholder": { + "value": "Enter price" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput2", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 200, + "left": 20.930272386941944, + "width": 12, + "height": 40 + } + }, + "parent": "e70226f2-0985-4145-9fb4-d8355258b0c5" + }, + "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + }, + "modalHeight": { + "type": "code", + "displayName": "Modal Height", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#067a6fff" + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#067a6fff" + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Edit a Product" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{true}}" + }, + "triggerButtonLabel": { + "value": "Edit a Product" + }, + "size": { + "value": "lg" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "290px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal2", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 34 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 140.00003814697266, + "left": 62.79071485596067, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "a0c5b8ff-e151-4e8a-b887-e74054f722e8": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{queries.tooljetdbGetProducts.data.map(product => product.id)}}" + }, + "display_values": { + "value": "{{queries.tooljetdbGetProducts.data.map(product => `#${product.id} ${product.product_name}`)}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select a Product..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown3", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 30, + "left": 18.604649603499897, + "width": 33, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ed24609d-8dd2-4214-b67b-c9d0e16a8a7c": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 30, + "left": 4.651162790697675, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "ca8c0376-fc72-42b3-8082-ec468c7f00ce": { + "id": "ca8c0376-fc72-42b3-8082-ec468c7f00ce", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{components.dropdown3.value == undefined}}", + "fxActive": true + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{queries?.tooljetdbGetProducts?.data?.filter(product => product.id == components.dropdown3.value)[0]?.quantity ?? 0}}" + }, + "maxValue": { + "value": "1000" + }, + "minValue": { + "value": "0" + }, + "placeholder": { + "value": "Enter quantity" + }, + "decimalPlaces": { + "value": "{{0}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput3", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 90, + "left": 18.60464124919019, + "width": 11.000000000000002, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "68ddb46c-0f0d-4085-9498-c10fbbcb50ea": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 90, + "left": 4.651162790697675, + "width": 6, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "3c8aeefe-b9b1-4dd8-9415-a7ed57e2e0b3": { + "id": "3c8aeefe-b9b1-4dd8-9415-a7ed57e2e0b3", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "minValue": { + "type": "code", + "displayName": "Minimum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "maxValue": { + "type": "code", + "displayName": "Maximum value", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "decimalPlaces": { + "type": "code", + "displayName": "Decimal places", + "validation": { + "schema": { + "type": "number" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + } + }, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color" + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{components.dropdown3.value == undefined}}", + "fxActive": true + }, + "borderRadius": { + "value": "{{5}}" + }, + "backgroundColor": { + "value": "", + "fxActive": false + }, + "borderColor": { + "value": "#dadcdeff" + }, + "textColor": { + "value": "#232e3c" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{queries?.tooljetdbGetProducts?.data?.filter(product => product.id == components.dropdown3.value)[0]?.price ?? 0}}" + }, + "maxValue": { + "value": "999999" + }, + "minValue": { + "value": "0.50" + }, + "placeholder": { + "value": "Enter price" + }, + "decimalPlaces": { + "value": "{{2}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "numberinput4", + "displayName": "Number Input", + "description": "Number field for forms", + "component": "NumberInput", + "defaultSize": { + "width": 4, + "height": 30 + }, + "exposedVariables": { + "value": 99 + } + }, + "layouts": { + "desktop": { + "top": 90, + "left": 69.76743910533398, + "width": 11.000000000000002, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "0d90cf44-9df3-4bf5-99f0-ebbfc41e47cc": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 90, + "left": 58.139534883720934, + "width": 5, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "22d7874c-d768-4405-a69b-ef20094d6bb7": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{components.dropdown3.value == undefined}}", + "fxActive": true + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{components.numberinput3.value > 0 ? [\"in_stock\", \"yet_to_receive\"] : [\"out_of_stock\"]}}" + }, + "display_values": { + "value": "{{components.numberinput3.value > 0 ? [\"In stock\", \"Yet to receive\"] : [\"Out of stock\"]}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "placeholder": { + "value": "Select status..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown4", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9", + "layouts": { + "desktop": { + "top": 150, + "left": 18.60465302889386, + "width": 33, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "15555a82-c2b2-47fc-b662-44aa832e0798": { + "id": "15555a82-c2b2-47fc-b662-44aa832e0798", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Status" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text23", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 150, + "left": 4.651161555128177, + "width": 6, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "23a1a238-7423-4911-b3a9-988ab86b5969": { + "id": "23a1a238-7423-4911-b3a9-988ab86b5969", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + } + ], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#067a6fff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button4", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 219.99998092651367, + "left": 58.139530740432065, + "width": 6.000000000000001, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "4cfb4009-0c20-49e3-9ccb-fc194b22c1d3": { + "id": "4cfb4009-0c20-49e3-9ccb-fc194b22c1d3", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "edc2a168-cb72-405b-b83f-22efa54f05cf", + "queryName": "tooljetdbUpdateProduct", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#375fcf00" + }, + "disabledState": { + "value": "{{components.dropdown3.value == undefined || components.numberinput4.value == 0 || components.dropdown4.value == undefined}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Update product" + }, + "loadingState": { + "value": "{{queries.tooljetdbUpdateProduct.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button5", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 74.41860524711768, + "width": 9, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + }, + "07ea5cec-7ebd-49fe-a6d5-a88b4bd21091": { + "id": "07ea5cec-7ebd-49fe-a6d5-a88b4bd21091", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider2", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 90, + "left": 51.162799791465915, + "width": 1, + "height": 40 + } + }, + "parent": "2352a774-0ef5-4b83-9d9d-72d6d9dc56d9" + } + }, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ] + }, + "af8375fb-ce8f-41b1-9fd7-f907a50f0985": { + "name": "All Orders", + "handle": "all-orders", + "components": { + "165a9726-b38c-4181-992e-50484b47ccb7": { + "id": "165a9726-b38c-4181-992e-50484b47ccb7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{24}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "All Orders" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text2", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 9.302325924067027, + "width": 10, + "height": 80 + } + } + }, + "e190d929-e4ba-4beb-9541-2701b8a7af09": { + "id": "e190d929-e4ba-4beb-9541-2701b8a7af09", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#067a6fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider1", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 110, + "left": 9.30232558139535, + "width": 38, + "height": 10 + } + } + }, + "866abf98-2c86-4bb7-afa6-a7a7bcadbe75": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order summary" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text5", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 30, + "left": 4.651166363741077, + "width": 13, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "4ce5c8d2-a7b7-40e9-909d-4b62424197d9": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider2", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 80, + "left": 2.876220552879752, + "width": 40.024616181900626, + "height": 10 + } + }, + "withDefaultChildren": false + }, + "41721009-f671-4672-bb0c-7f25645b4ba1": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Package #{{cardData.id}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text6", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 100, + "left": 4.651159868850983, + "width": 8.982736282956534, + "height": 30 + } + }, + "withDefaultChildren": false + }, + "a171415a-396f-474e-8834-710a1aaa6403": { + "id": "a171415a-396f-474e-8834-710a1aaa6403", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order date:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text7", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651178052303546, + "width": 4.97020146401503, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "296fd188-428b-475d-9ef6-9d1dedb47303": { + "id": "296fd188-428b-475d-9ef6-9d1dedb47303", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipping address:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text9", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 53.488371697641014, + "width": 8, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "2edb5577-f34a-4bb3-be92-a90c8a8acfb7": { + "id": "2edb5577-f34a-4bb3-be92-a90c8a8acfb7", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text13", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 4.651166474149337, + "width": 4.011984193820045, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "df317a0d-d5cd-4a8c-ad3b-d69fdd72e472": { + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider1", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 100, + "left": 48.83721226769237, + "width": 1, + "height": 260 + } + }, + "withDefaultChildren": false + }, + "f8610231-6139-4cdf-9c60-bc0598faada9": { + "id": "f8610231-6139-4cdf-9c60-bc0598faada9", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Phone number:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text15", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 53.48836635998077, + "width": 7.006413163179375, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "5cfaf750-7739-4f4e-b0be-b60163e8c7d6": { + "id": "5cfaf750-7739-4f4e-b0be-b60163e8c7d6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.phone_number}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text16", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 72.09302471233141, + "width": 10, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "2fb74cdb-a6e8-408e-8db6-d18cb68bcbed": { + "id": "2fb74cdb-a6e8-408e-8db6-d18cb68bcbed", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.order_date}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text17", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 16.27908627821234, + "width": 12.99527110189804, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "9ba55558-5051-4812-b153-c6a28d5be0b6": { + "id": "9ba55558-5051-4812-b153-c6a28d5be0b6", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000ff", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Comments:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text18", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 4.651167915842052, + "width": 7.006413163179376, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "f7071036-bd00-42d5-8d55-52c0600df081": { + "id": "f7071036-bd00-42d5-8d55-52c0600df081", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.quantity}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text19", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 16.279070755897457, + "width": 5.988307313597203, + "height": 30 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "8639c34e-8d3e-4311-b515-f6867f0c4562": { + "component": { + "properties": { + "title": { + "type": "code", + "displayName": "Title", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "useDefaultButton": { + "type": "toggle", + "displayName": "Use default trigger button", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "triggerButtonLabel": { + "type": "code", + "displayName": "Trigger button label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "hideTitleBar": { + "type": "toggle", + "displayName": "Hide title bar" + }, + "hideCloseButton": { + "type": "toggle", + "displayName": "Hide close button" + }, + "hideOnEsc": { + "type": "toggle", + "displayName": "Close on escape key" + }, + "closeOnClickingOutside": { + "type": "toggle", + "displayName": "Close on clicking outside" + }, + "size": { + "type": "select", + "displayName": "Modal size", + "options": [ + { + "name": "small", + "value": "sm" + }, + { + "name": "medium", + "value": "lg" + }, + { + "name": "large", + "value": "xl" + } + ], + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onOpen": { + "displayName": "On open" + }, + "onClose": { + "displayName": "On close" + } + }, + "styles": { + "headerBackgroundColor": { + "type": "color", + "displayName": "Header background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "headerTextColor": { + "type": "color", + "displayName": "Header title color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "bodyBackgroundColor": { + "type": "color", + "displayName": "Body background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": true + } + }, + "triggerButtonBackgroundColor": { + "type": "color", + "displayName": "Trigger button background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "triggerButtonTextColor": { + "type": "color", + "displayName": "Trigger button text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "headerBackgroundColor": { + "value": "#ffffffff" + }, + "headerTextColor": { + "value": "#067A6F", + "fxActive": true + }, + "bodyBackgroundColor": { + "value": "#ffffffff" + }, + "disabledState": { + "value": "{{false}}" + }, + "visibility": { + "value": "{{true}}" + }, + "triggerButtonBackgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "triggerButtonTextColor": { + "value": "#ffffffff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "title": { + "value": "Create an order" + }, + "loadingState": { + "value": "{{false}}" + }, + "useDefaultButton": { + "value": "{{true}}" + }, + "triggerButtonLabel": { + "value": "Create an order" + }, + "size": { + "value": "xl" + }, + "hideTitleBar": { + "value": "{{false}}" + }, + "hideCloseButton": { + "value": "{{false}}" + }, + "hideOnEsc": { + "value": "{{true}}" + }, + "closeOnClickingOutside": { + "value": "{{false}}" + }, + "modalHeight": { + "value": "415px" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "modal1", + "displayName": "Modal", + "description": "Modal triggered by events", + "component": "Modal", + "defaultSize": { + "width": 10, + "height": 400 + }, + "exposedVariables": { + "show": false + }, + "actions": [ + { + "handle": "open", + "displayName": "Open" + }, + { + "handle": "close", + "displayName": "Close" + } + ] + }, + "layouts": { + "desktop": { + "top": 50, + "left": 81.39534534799706, + "width": 8, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "81f4339a-95de-46d2-8669-b2ba74036e8e": { + "id": "81f4339a-95de-46d2-8669-b2ba74036e8e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "8f3776cc-8710-4985-b3f1-7388804078a4", + "queryName": "orderDetailsBackup", + "parameters": {} + } + ], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "textColor": { + "value": "#fff" + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{6}}" + }, + "borderColor": { + "value": "#375fcf00" + }, + "disabledState": { + "value": "{{components.dropdown1.value == undefined || components.dropdown2.value == undefined || components.textinput1.value == \"\" || components.textinput2.value == \"\" || !components.textinput2.isValid || components.textarea1.value == \"\"}}", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Place order" + }, + "loadingState": { + "value": "{{queries.orderDetailsBackup.isLoading || queries.tooljetdbVerifyProductQuantity.isLoading || queries.tooljetdbReduceProductQuantity.isLoading || queries.tooljetdbCreateOrder.isLoading || queries.tooljetdbCurrentProductStatus.isLoading || queries.tooljetdbRollbackQuantity.isLoading}}", + "fxActive": true + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button1", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 340, + "left": 79.06977170529589, + "width": 6.992977528089888, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "bc8dd077-0f6d-46e3-b88a-e878245ce867": { + "id": "bc8dd077-0f6d-46e3-b88a-e878245ce867", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Button Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Loading State", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "textColor": { + "type": "color", + "displayName": "Text color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "loaderColor": { + "type": "color", + "displayName": "Loader color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + }, + "defaultValue": false + } + }, + "borderRadius": { + "type": "number", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "number" + }, + "defaultValue": false + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + }, + "defaultValue": false + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "close-modal", + "message": "Hello world!", + "alertType": "info", + "modal": "8639c34e-8d3e-4311-b515-f6867f0c4562" + } + ], + "styles": { + "backgroundColor": { + "value": "#8888881a", + "fxActive": true + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "loaderColor": { + "value": "#fff" + }, + "visibility": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + }, + "borderColor": { + "value": "#067a6fff" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Cancel" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "button2", + "displayName": "Button", + "description": "Trigger actions: queries, alerts etc", + "component": "Button", + "defaultSize": { + "width": 3, + "height": 30 + }, + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visible", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "loading", + "displayName": "Loading", + "params": [ + { + "handle": "loading", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 340, + "left": 65.08362090356762, + "width": 5.026685393258427, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "400c8a01-7574-4f74-8ee7-49b49a8ed2f4": { + "id": "400c8a01-7574-4f74-8ee7-49b49a8ed2f4", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text20", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110, + "left": 4.651166911103314, + "width": 5, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "374a3164-018e-4cb7-af83-ea392abb9eeb": { + "id": "374a3164-018e-4cb7-af83-ea392abb9eeb", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Product Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text21", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 4.651165995124106, + "width": 15, + "height": 30 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "7c635eca-f0d8-4a7c-ba6a-0e87fec2004a": { + "id": "7c635eca-f0d8-4a7c-ba6a-0e87fec2004a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": "{{14}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Billing Details" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text22", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 20, + "left": 53.488382649293165, + "width": 15, + "height": 30 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "32329c5e-a9bf-405c-894e-bb5cb854c352": { + "id": "32329c5e-a9bf-405c-894e-bb5cb854c352", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider2", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 20, + "left": 48.83720930232558, + "width": 1, + "height": 290 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "57319c90-0082-453a-9d23-e52165befda6": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": null + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your name" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput1", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562", + "layouts": { + "desktop": { + "top": 60, + "left": 65.1423976898723, + "width": 12.986691558221782, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "9a73f323-4640-493e-886e-e487bfacd6c1": { + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Name" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text23", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562", + "layouts": { + "desktop": { + "top": 60, + "left": 53.488337158183775, + "width": 4.011984193820043, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "0b811944-4c35-4915-a6ec-bb532ce6718b": { + "id": "0b811944-4c35-4915-a6ec-bb532ce6718b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Address" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text24", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 170, + "left": 53.48836536981169, + "width": 4, + "height": 30 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "51cd95f0-1ece-4bb2-b882-19144af51805": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter address" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea1", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562", + "layouts": { + "desktop": { + "top": 200, + "left": 53.42362234932057, + "width": 18, + "height": 110 + } + }, + "withDefaultChildren": false + }, + "1abf6286-6d97-4524-ad55-779f71d91c60": { + "id": "1abf6286-6d97-4524-ad55-779f71d91c60", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Phone no" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text25", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110, + "left": 53.48837816809348, + "width": 5.03866958707847, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "5451d483-e603-426d-890a-78e8fad06336": { + "id": "5451d483-e603-426d-890a-78e8fad06336", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onChange": { + "displayName": "On change" + }, + "onEnterPressed": { + "displayName": "On Enter Pressed" + }, + "onFocus": { + "displayName": "On focus" + }, + "onBlur": { + "displayName": "On blur" + } + }, + "styles": { + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "errTextColor": { + "type": "color", + "displayName": "Error Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "textColor": { + "value": "#000" + }, + "borderColor": { + "value": "#dadcde" + }, + "errTextColor": { + "value": "#ff0000" + }, + "borderRadius": { + "value": "{{5}}" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "backgroundColor": { + "value": "#fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "regex": { + "value": "" + }, + "minLength": { + "value": null + }, + "maxLength": { + "value": null + }, + "customRule": { + "value": "{{/^\\d*$/.test(components.textinput2.value) ? true : \"Invalid phone number\"}}" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Enter your phone number" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textinput2", + "displayName": "Text Input", + "description": "Text field for forms", + "component": "TextInput", + "defaultSize": { + "width": 6, + "height": 30 + }, + "validation": { + "regex": { + "type": "code", + "displayName": "Regex" + }, + "minLength": { + "type": "code", + "displayName": "Min length" + }, + "maxLength": { + "type": "code", + "displayName": "Max length" + }, + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": "" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + }, + { + "handle": "setFocus", + "displayName": "Set focus" + }, + { + "handle": "setBlur", + "displayName": "Set blur" + }, + { + "handle": "disable", + "displayName": "Disable", + "params": [ + { + "handle": "disable", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + }, + { + "handle": "visibility", + "displayName": "Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110, + "left": 65.1162712423369, + "width": 12.986691558221782, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "db1b85b5-db78-4e0a-9cd0-6eb61756bf57": { + "id": "db1b85b5-db78-4e0a-9cd0-6eb61756bf57", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Customer request" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text26", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 170, + "left": 4.651171440848492, + "width": 7, + "height": 30 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "e35349b2-f082-46fe-8318-1caa618fe5e1": { + "id": "e35349b2-f082-46fe-8318-1caa618fe5e1", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "" + }, + "placeholder": { + "value": "Eg. This order is a gift- please wrap it!" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea2", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 200, + "left": 4.65115874998351, + "width": 18, + "height": 110 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "da62e44d-2029-4d12-9a57-4b2a7219bb91": { + "id": "da62e44d-2029-4d12-9a57-4b2a7219bb91", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{28}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "${{cardData.total_price}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text27", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 76.74418196183159, + "width": 8, + "height": 40 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "5c2a55da-c439-497d-a5c4-bc269695811e": { + "id": "5c2a55da-c439-497d-a5c4-bc269695811e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text30", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 65.10333150708277, + "width": 5, + "height": 40 + } + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal" + }, + "511edbb1-178b-4a32-8d48-9317af67a3ae": { + "id": "511edbb1-178b-4a32-8d48-9317af67a3ae", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "backgroundColor": { + "type": "color", + "displayName": "Background color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border Radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "borderColor": { + "type": "color", + "displayName": "Border color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#067A6F", + "fxActive": true + }, + "borderRadius": { + "value": "0" + }, + "borderColor": { + "value": "#ffffff00" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "visible": { + "value": "{{true}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "container1", + "displayName": "Container", + "description": "Wrapper for multiple components", + "defaultSize": { + "width": 5, + "height": 200 + }, + "component": "Container", + "exposedVariables": {} + }, + "layouts": { + "desktop": { + "top": 0, + "left": 0, + "width": 3, + "height": 890 + } + } + }, + "c4b1a932-dccf-4af0-baae-1daad7fdfb27": { + "id": "c4b1a932-dccf-4af0-baae-1daad7fdfb27", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#ffffff", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "center" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "oblique" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipzy" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text28", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 0.3960462227705383, + "width": 40.044005054566775, + "height": 30 + } + }, + "parent": "511edbb1-178b-4a32-8d48-9317af67a3ae" + }, + "5590f707-b7fc-4ed1-972f-4dd78ddf1494": { + "id": "5590f707-b7fc-4ed1-972f-4dd78ddf1494", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "231b8e69-78b0-4463-8a50-06efbe933c4b" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconHome2" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon1", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 27.906976744186046, + "width": 16, + "height": 40 + } + }, + "parent": "511edbb1-178b-4a32-8d48-9317af67a3ae" + }, + "8cfcf4bd-7479-406e-b5cf-319164a680f5": { + "id": "8cfcf4bd-7479-406e-b5cf-319164a680f5", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onClick", + "actionId": "switch-page", + "message": "Hello world!", + "alertType": "info", + "pageId": "27be7952-16b7-4dd2-922b-14670240551d" + } + ], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "icon": { + "value": "IconBoxSeam" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon2", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 120, + "left": 27.90697301885739, + "width": 16, + "height": 40 + } + }, + "parent": "511edbb1-178b-4a32-8d48-9317af67a3ae" + }, + "f27bb2ac-f9f9-441d-ba37-f9d6f8e82f0e": { + "id": "f27bb2ac-f9f9-441d-ba37-f9d6f8e82f0e", + "component": { + "properties": { + "icon": { + "type": "iconPicker", + "displayName": "Icon", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onClick": { + "displayName": "On click" + }, + "onHover": { + "displayName": "On hover" + } + }, + "styles": { + "iconColor": { + "type": "color", + "displayName": "Icon Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "iconColor": { + "value": "#ffffff", + "fxActive": true + }, + "visibility": { + "value": "{{true}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 10px 2px #ffffffff", + "fxActive": false + } + }, + "properties": { + "icon": { + "value": "IconShoppingCart" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "icon3", + "displayName": "Icon", + "description": "Icon", + "defaultSize": { + "width": 5, + "height": 48 + }, + "component": "Icon", + "exposedVariables": {}, + "actions": [ + { + "handle": "click", + "displayName": "Click" + }, + { + "displayName": "Set Visibility", + "handle": "setVisibility", + "params": [ + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{true}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 179.9999542236328, + "left": 27.90694290821947, + "width": 16, + "height": 40 + } + }, + "parent": "511edbb1-178b-4a32-8d48-9317af67a3ae" + }, + "e0ff872b-e676-4b7f-b7f4-9dabe92a0f0e": { + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onSelect", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info", + "componentSpecificActionHandle": "selectOption", + "componentId": "6bfe6fd2-830d-4ca5-bf72-4878230cc667", + "componentSpecificActionParams": [ + { + "handle": "select", + "displayName": "Select", + "value": "{{}}" + } + ] + } + ], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{queries.tooljetdbGetProducts.data.filter(product => product.status == \"in_stock\").map(product => product.id)}}" + }, + "display_values": { + "value": "{{queries.tooljetdbGetProducts.data.filter(product => product.status == \"in_stock\").map(product => product.product_name)}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + }, + "placeholder": { + "value": "Select..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown1", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562", + "layouts": { + "desktop": { + "top": 60, + "left": 20.93024016569643, + "width": 11.000000000000002, + "height": 40 + } + }, + "withDefaultChildren": false + }, + "bc936cc5-a561-4511-b93b-2afa4d8524f5": { + "id": "bc936cc5-a561-4511-b93b-2afa4d8524f5", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Select a product" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text29", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 60, + "left": 4.651153541276897, + "width": 7, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "6bfe6fd2-830d-4ca5-bf72-4878230cc667": { + "id": "6bfe6fd2-830d-4ca5-bf72-4878230cc667", + "component": { + "properties": { + "label": { + "type": "code", + "displayName": "Label", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "advanced": { + "type": "toggle", + "displayName": "Advanced", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "value": { + "type": "code", + "displayName": "Default value", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + }, + "values": { + "type": "code", + "displayName": "Option values", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "display_values": { + "type": "code", + "displayName": "Option labels", + "conditionallyRender": { + "key": "advanced", + "value": false + }, + "validation": { + "schema": { + "type": "array", + "element": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ] + } + } + } + }, + "schema": { + "type": "code", + "displayName": "Schema", + "conditionallyRender": { + "key": "advanced", + "value": true + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Options loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onSelect": { + "displayName": "On select" + }, + "onSearchTextChanged": { + "displayName": "On search text changed" + } + }, + "styles": { + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "selectedTextColor": { + "type": "color", + "displayName": "Selected Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "justifyContent": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onSelect", + "actionId": "control-component", + "message": "Hello world!", + "alertType": "info" + } + ], + "styles": { + "borderRadius": { + "value": "5" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{components.dropdown1.value == undefined}}", + "fxActive": true + }, + "justifyContent": { + "value": "left" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "validation": { + "customRule": { + "value": null + } + }, + "properties": { + "advanced": { + "value": "{{false}}" + }, + "schema": { + "value": "{{[\t{label: 'One',value: 1,disable: false,visible: true,default: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true}\t]}}" + }, + "label": { + "value": "" + }, + "value": { + "value": "{{}}" + }, + "values": { + "value": "{{Array.from({length: queries?.tooljetdbGetProducts?.data?.filter(product => product.id == components.dropdown1.value)[0]?.quantity ?? 0}, (_, i) => i + 1)}}" + }, + "display_values": { + "value": "{{Array.from({length: queries?.tooljetdbGetProducts?.data?.filter(product => product.id == components.dropdown1.value)[0]?.quantity ?? 0}, (_, i) => i + 1)}}" + }, + "loadingState": { + "value": "{{queries.tooljetdbGetProducts.isLoading}}", + "fxActive": true + }, + "placeholder": { + "value": "Select..." + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "dropdown2", + "displayName": "Dropdown", + "description": "Select one value from options", + "defaultSize": { + "width": 8, + "height": 30 + }, + "component": "DropDown", + "validation": { + "customRule": { + "type": "code", + "displayName": "Custom validation" + } + }, + "exposedVariables": { + "value": 2, + "searchText": "", + "label": "Select", + "optionLabels": [ + "one", + "two", + "three" + ], + "selectedOptionLabel": "two" + }, + "actions": [ + { + "handle": "selectOption", + "displayName": "Select option", + "params": [ + { + "handle": "select", + "displayName": "Select" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 110, + "left": 20.93022783617782, + "width": 11.000000000000002, + "height": 40 + } + }, + "parent": "8639c34e-8d3e-4311-b515-f6867f0c4562" + }, + "4bc67ffc-f2ca-491a-b051-4550a548d3ae": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{cardData.comments}}" + }, + "placeholder": { + "value": "" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea3", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 250, + "left": 4.651169675288805, + "width": 18.000000000000004, + "height": 100 + } + }, + "withDefaultChildren": false + }, + "f54ea458-02e0-4af1-a49b-7824280af6df": { + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{cardData.address}}" + }, + "placeholder": { + "value": "Placeholder text" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea4", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "parent": "eca1362e-ff56-4930-9eff-9018ef2f019c-modal", + "layouts": { + "desktop": { + "top": 210, + "left": 53.48837209302326, + "width": 18.000000000000004, + "height": 140 + } + }, + "withDefaultChildren": false + }, + "aa4acf33-d388-4138-86ff-e7080277cba9": { + "id": "aa4acf33-d388-4138-86ff-e7080277cba9", + "component": { + "properties": { + "columnData": { + "type": "code", + "displayName": "Column Data" + }, + "cardData": { + "type": "code", + "displayName": "Card Data" + }, + "cardWidth": { + "type": "code", + "displayName": "Card Width", + "validation": { + "schema": { + "type": "number" + } + } + }, + "cardHeight": { + "type": "code", + "displayName": "Card Height", + "validation": { + "schema": { + "type": "number" + } + } + }, + "enableAddCard": { + "type": "toggle", + "displayName": "Enable Add Card" + }, + "showDeleteButton": { + "type": "toggle", + "displayName": "Show Delete Button" + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": { + "onUpdate": { + "displayName": "On update" + }, + "onAddCardClick": { + "displayName": "On add card click" + }, + "onCardRemoved": { + "displayName": "Card removed" + }, + "onCardAdded": { + "displayName": "Card added" + }, + "onCardMoved": { + "displayName": "Card moved" + }, + "onCardSelected": { + "displayName": "Card selected" + } + }, + "styles": { + "disabledState": { + "type": "toggle", + "displayName": "Disable" + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility" + }, + "accentColor": { + "type": "color", + "displayName": "Accent color" + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [ + { + "eventId": "onCardMoved", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b886a2d1-7aa7-4f9d-aefa-ae9246d7e513", + "queryName": "tooljetdbUpdateOrderStatus", + "parameters": {} + } + ], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{queries.tooljetdbUpdateOrderStatus.isLoading || queries.tooljetdbGetOrders.isLoading}}", + "fxActive": true + }, + "accentColor": { + "value": "#067a6fff" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "columnData": { + "value": "{{[{ \"id\": \"order_placed\", \"title\": \"Orders Placed\" },{ \"id\": \"shipped\", \"title\": \"Shipped\" },{ \"id\": \"delivered\", \"title\": \"delivered\" }]}}" + }, + "cardData": { + "value": "{{queries?.tooljetdbGetOrders?.data?.map(order => ({...order, columnId: order.status})) ?? []}}" + }, + "cardWidth": { + "value": "{{300}}" + }, + "cardHeight": { + "value": "{{100}}" + }, + "enableAddCard": { + "value": "{{false}}" + }, + "showDeleteButton": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "kanban1", + "displayName": "Kanban", + "description": "Kanban", + "component": "Kanban", + "defaultSize": { + "width": 40, + "height": 490 + }, + "defaultChildren": [ + { + "componentName": "Text", + "layout": { + "top": 20, + "left": 4, + "height": 30 + }, + "properties": [ + "text" + ], + "accessorKey": "text", + "styles": [ + "fontWeight", + "textSize", + "textColor" + ], + "defaultValue": { + "text": "{{cardData.title}}", + "fontWeight": "bold", + "textSize": 16, + "textColor": "#000" + } + }, + { + "componentName": "Text", + "layout": { + "top": 50, + "left": 4, + "height": 30 + }, + "properties": [ + "text" + ], + "accessorKey": "text", + "styles": [ + "textSize", + "textColor" + ], + "defaultValue": { + "text": "{{cardData.description}}", + "textSize": 14, + "textColor": "#000" + } + } + ], + "actions": [ + { + "handle": "addCard", + "displayName": "Add Card", + "params": [ + { + "handle": "cardDetails", + "displayName": "Card Details", + "defaultValue": "{{{ id: \"c11\", title: \"Title 11\", description: \"Description 11\", columnId: \"r3\" }}}" + } + ] + }, + { + "handle": "deleteCard", + "displayName": "Delete Card", + "params": [ + { + "handle": "id", + "displayName": "Card Id", + "defaultValue": "{{components.kanban1?.lastSelectedCard?.id}}" + } + ] + }, + { + "handle": "moveCard", + "displayName": "Move Card", + "params": [ + { + "handle": "cardId", + "displayName": "Card Id", + "defaultValue": "{{components.kanban1?.lastSelectedCard?.id}}" + }, + { + "handle": "columnId", + "displayName": "Destination Column Id", + "defaultValue": "" + } + ] + }, + { + "handle": "updateCardData", + "displayName": "Update Card Data", + "params": [ + { + "handle": "id", + "displayName": "Card Id", + "defaultValue": "{{components.kanban1?.lastSelectedCard?.id}}" + }, + { + "handle": "value", + "displayName": "Value", + "defaultValue": "{{{...components.kanban1?.lastSelectedCard, title: 'New Title'}}}" + } + ] + } + ], + "exposedVariables": { + "updatedCardData": {}, + "lastAddedCard": {}, + "lastRemovedCard": {}, + "lastCardMovement": {}, + "lastSelectedCard": {}, + "lastUpdatedCard": {}, + "lastCardUpdate": [] + } + }, + "layouts": { + "desktop": { + "top": 130, + "left": 9.295899538701875, + "width": 38, + "height": 700 + } + } + }, + "c0745deb-4ab1-465a-92e5-ec09288c7930": { + "id": "c0745deb-4ab1-465a-92e5-ec09288c7930", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "text": { + "value": "{{cardData.title}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "fontWeight": { + "value": "bold" + }, + "textSize": { + "value": 16 + }, + "textColor": { + "value": "#000" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "#{{cardData.id}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "fontWeight": { + "value": "bold" + }, + "textSize": { + "value": 16 + }, + "textColor": { + "value": "#000" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text32", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 10, + "left": 3.9999907118557045, + "height": 30, + "width": 31.829892866475046 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9" + }, + "4f5b8781-789b-467f-a75d-a4dfe1fac372": { + "id": "4f5b8781-789b-467f-a75d-a4dfe1fac372", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "text": { + "value": "{{cardData.description}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "textSize": { + "value": 14 + }, + "textColor": { + "value": "#000" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.customer_name}}" + }, + "loadingState": { + "value": "{{false}}" + }, + "textSize": { + "value": 14 + }, + "textColor": { + "value": "#000" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text33", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 4.651162790697675, + "height": 50, + "width": 25 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9" + }, + "68fafc7a-a099-4fb2-8a04-ec6e7a62fc5e": { + "id": "68fafc7a-a099-4fb2-8a04-ec6e7a62fc5e", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067a6fff" + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "right" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "italic" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "${{cardData.total_price}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text34", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 40, + "left": 65.11627906976743, + "width": 11.999999999999998, + "height": 50 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9" + }, + "69844913-6e7f-4b97-960c-260384691726": { + "id": "69844913-6e7f-4b97-960c-260384691726", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": true + }, + "textSize": { + "value": "{{18}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order summary" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text35", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 4.651163680307713, + "width": 13, + "height": 40 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "23cc5d76-1eb2-4f06-8043-0d8801e26c6c": { + "id": "23cc5d76-1eb2-4f06-8043-0d8801e26c6c", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "divider3", + "displayName": "Divider", + "description": "Separator between components", + "component": "Divider", + "defaultSize": { + "width": 10, + "height": 10 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 80, + "left": 2.3255813953488373, + "width": 41.00000000000001, + "height": 10 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "3a379169-6cf4-4534-ae78-1d932b96aed0": { + "id": "3a379169-6cf4-4534-ae78-1d932b96aed0", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Total price" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text36", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 65.11628302358983, + "width": 5, + "height": 40 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "fa03e6c7-9ad5-40f0-9f0d-91a217e7997b": { + "id": "fa03e6c7-9ad5-40f0-9f0d-91a217e7997b", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#067A6F", + "fxActive": false + }, + "textSize": { + "value": "{{28}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "${{cardData.total_price}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text37", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 30, + "left": 76.74418489618814, + "width": 8, + "height": 40 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "6f0d01c7-24ea-4149-a2b3-965ce3c86da2": { + "id": "6f0d01c7-24ea-4149-a2b3-965ce3c86da2", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#000000", + "fxActive": true + }, + "textSize": { + "value": "{{16}}" + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "bold" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Package #{{cardData.id}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text38", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 100, + "left": 4.651162948111889, + "width": 8.982736282956534, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "7eaa2d07-60a9-48e8-8bfe-1e3f9793b02c": { + "id": "7eaa2d07-60a9-48e8-8bfe-1e3f9793b02c", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Order date:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text39", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 4.651163680307713, + "width": 4.97020146401503, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "3c6a33bf-910a-4276-b005-bd729c12a29d": { + "id": "3c6a33bf-910a-4276-b005-bd729c12a29d", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.order_date}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text40", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 16.279070755897457, + "width": 12.99527110189804, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "ce4f1a01-511b-4eb8-99e9-f6c23d293b2d": { + "id": "ce4f1a01-511b-4eb8-99e9-f6c23d293b2d", + "component": { + "properties": {}, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "dividerColor": { + "type": "color", + "displayName": "Divider Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "dividerColor": { + "value": "#C1C8CD", + "fxActive": true + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": {}, + "general": {}, + "exposedVariables": {} + }, + "name": "verticaldivider3", + "displayName": "Vertical Divider", + "description": "Vertical Separator between components", + "component": "VerticalDivider", + "defaultSize": { + "width": 2, + "height": 100 + }, + "exposedVariables": { + "value": {} + } + }, + "layouts": { + "desktop": { + "top": 140, + "left": 48.83721651805144, + "width": 1, + "height": 220 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "34d613b7-ecc2-4016-a601-caf8c937efbd": { + "id": "34d613b7-ecc2-4016-a601-caf8c937efbd", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Phone number:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text41", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 53.488371697641014, + "width": 7.006413163179375, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "6b1102c7-5c59-4f1b-a479-125d3bd66c90": { + "id": "6b1102c7-5c59-4f1b-a479-125d3bd66c90", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.phone_number}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text42", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 140, + "left": 72.09302641887187, + "width": 10, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "cf6f94e0-37f6-4768-911f-3290af062e01": { + "id": "cf6f94e0-37f6-4768-911f-3290af062e01", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Quantity:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text43", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 4.651163680307713, + "width": 4.011984193820045, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "98c09d1e-772d-4f7b-8233-ef83f71c5a39": { + "id": "98c09d1e-772d-4f7b-8233-ef83f71c5a39", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "#687076", + "fxActive": true + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "{{cardData.quantity}}" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text44", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 16.279070755897457, + "width": 5.988307313597203, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "2630be58-5440-4757-b1f4-51c542888d64": { + "id": "2630be58-5440-4757-b1f4-51c542888d64", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Comments:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text45", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 220, + "left": 4.651163680307713, + "width": 7.006413163179376, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "3c11a4c8-c749-482b-b934-635819a2e98a": { + "id": "3c11a4c8-c749-482b-b934-635819a2e98a", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{cardData.comments}}" + }, + "placeholder": { + "value": "" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea5", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 250, + "left": 4.651163680307713, + "width": 18.000000000000004, + "height": 100 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "9d4ee3eb-988f-4231-9d86-d885fb6b741a": { + "id": "9d4ee3eb-988f-4231-9d86-d885fb6b741a", + "component": { + "properties": { + "text": { + "type": "code", + "displayName": "Text", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + }, + "loadingState": { + "type": "toggle", + "displayName": "Show loading state", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "fontWeight": { + "type": "select", + "displayName": "Font Weight", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "bold", + "value": "bold" + }, + { + "name": "lighter", + "value": "lighter" + }, + { + "name": "bolder", + "value": "bolder" + } + ] + }, + "decoration": { + "type": "select", + "displayName": "Text Decoration", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "overline", + "value": "overline" + }, + { + "name": "line-through", + "value": "line-through" + }, + { + "name": "underline", + "value": "underline" + }, + { + "name": "overline underline", + "value": "overline underline" + } + ] + }, + "transformation": { + "type": "select", + "displayName": "Text Transformation", + "options": [ + { + "name": "none", + "value": "none" + }, + { + "name": "uppercase", + "value": "uppercase" + }, + { + "name": "lowercase", + "value": "lowercase" + }, + { + "name": "capitalize", + "value": "capitalize" + } + ] + }, + "fontStyle": { + "type": "select", + "displayName": "Font Style", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "italic", + "value": "italic" + }, + { + "name": "oblique", + "value": "oblique" + } + ] + }, + "lineHeight": { + "type": "number", + "displayName": "Line Height" + }, + "textIndent": { + "type": "number", + "displayName": "Text Indent" + }, + "letterSpacing": { + "type": "number", + "displayName": "Letter Spacing" + }, + "wordSpacing": { + "type": "number", + "displayName": "Word Spacing" + }, + "fontVariant": { + "type": "select", + "displayName": "Font Variant", + "options": [ + { + "name": "normal", + "value": "normal" + }, + { + "name": "small-caps", + "value": "small-caps" + }, + { + "name": "initial", + "value": "initial" + }, + { + "name": "inherit", + "value": "inherit" + } + ] + }, + "textSize": { + "type": "number", + "displayName": "Text Size", + "validation": { + "schema": { + "type": "number" + } + } + }, + "backgroundColor": { + "type": "color", + "displayName": "Background Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textColor": { + "type": "color", + "displayName": "Text Color", + "validation": { + "schema": { + "type": "string" + } + } + }, + "textAlign": { + "type": "alignButtons", + "displayName": "Align Text", + "validation": { + "schema": { + "type": "string" + } + } + }, + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "backgroundColor": { + "value": "#fff00000" + }, + "textColor": { + "value": "", + "fxActive": false + }, + "textSize": { + "value": 14 + }, + "textAlign": { + "value": "left" + }, + "fontWeight": { + "value": "normal" + }, + "decoration": { + "value": "none" + }, + "transformation": { + "value": "none" + }, + "fontStyle": { + "value": "normal" + }, + "lineHeight": { + "value": 1.5 + }, + "textIndent": { + "value": 0 + }, + "letterSpacing": { + "value": 0 + }, + "wordSpacing": { + "value": 0 + }, + "fontVariant": { + "value": "normal" + }, + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{false}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "text": { + "value": "Shipping address:" + }, + "loadingState": { + "value": "{{false}}" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "text46", + "displayName": "Text", + "description": "Display markdown or HTML", + "component": "Text", + "defaultSize": { + "width": 6, + "height": 30 + }, + "exposedVariables": { + "text": "Hello, there!" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "Text", + "defaultValue": "New text" + } + ] + }, + { + "handle": "visibility", + "displayName": "Set Visibility", + "params": [ + { + "handle": "visibility", + "displayName": "Value", + "defaultValue": "{{false}}", + "type": "toggle" + } + ] + } + ] + }, + "layouts": { + "desktop": { + "top": 180, + "left": 53.488371697641014, + "width": 8, + "height": 30 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + }, + "11fddc11-da8d-4d82-b087-78a95f10605a": { + "id": "11fddc11-da8d-4d82-b087-78a95f10605a", + "component": { + "properties": { + "value": { + "type": "code", + "displayName": "Default value", + "validation": { + "schema": { + "type": "string" + } + } + }, + "placeholder": { + "type": "code", + "displayName": "Placeholder", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "general": { + "tooltip": { + "type": "code", + "displayName": "Tooltip", + "validation": { + "schema": { + "type": "string" + } + } + } + }, + "others": { + "showOnDesktop": { + "type": "toggle", + "displayName": "Show on desktop" + }, + "showOnMobile": { + "type": "toggle", + "displayName": "Show on mobile" + } + }, + "events": {}, + "styles": { + "visibility": { + "type": "toggle", + "displayName": "Visibility", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "disabledState": { + "type": "toggle", + "displayName": "Disable", + "validation": { + "schema": { + "type": "boolean" + } + } + }, + "borderRadius": { + "type": "code", + "displayName": "Border radius", + "validation": { + "schema": { + "type": "union", + "schemas": [ + { + "type": "string" + }, + { + "type": "number" + } + ] + } + } + } + }, + "validate": true, + "generalStyles": { + "boxShadow": { + "type": "boxShadow", + "displayName": "Box Shadow" + } + }, + "definition": { + "others": { + "showOnDesktop": { + "value": "{{true}}" + }, + "showOnMobile": { + "value": "{{false}}" + } + }, + "events": [], + "styles": { + "visibility": { + "value": "{{true}}" + }, + "disabledState": { + "value": "{{true}}" + }, + "borderRadius": { + "value": "{{5}}" + } + }, + "generalStyles": { + "boxShadow": { + "value": "0px 0px 0px 0px #00000040" + } + }, + "properties": { + "value": { + "value": "{{cardData.address}}" + }, + "placeholder": { + "value": "Placeholder text" + } + }, + "general": {}, + "exposedVariables": {} + }, + "name": "textarea6", + "displayName": "Textarea", + "description": "Text area form field", + "component": "TextArea", + "defaultSize": { + "width": 6, + "height": 100 + }, + "exposedVariables": { + "value": "ToolJet is an open-source low-code platform for building and deploying internal tools with minimal engineering efforts 🚀" + }, + "actions": [ + { + "handle": "setText", + "displayName": "Set Text", + "params": [ + { + "handle": "text", + "displayName": "text", + "defaultValue": "New Text" + } + ] + }, + { + "handle": "clear", + "displayName": "Clear" + } + ] + }, + "layouts": { + "desktop": { + "top": 210, + "left": 53.488371697641014, + "width": 18.000000000000004, + "height": 140 + } + }, + "parent": "aa4acf33-d388-4138-86ff-e7080277cba9-modal" + } + }, + "hidden": false, + "events": [ + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "f65f0293-3ae4-4d84-9f81-bbde9285f06c", + "queryName": "tooljetdbGetOrders", + "parameters": {} + }, + { + "eventId": "onPageLoad", + "actionId": "run-query", + "message": "Hello world!", + "alertType": "info", + "queryId": "b160e0e4-4ca0-4639-a963-95bec3b33b9e", + "queryName": "tooljetdbGetProducts", + "parameters": {} + } + ] + } + }, + "globalSettings": { + "hideHeader": true, + "appInMaintenance": false, + "canvasMaxWidth": "100000", + "canvasMaxWidthType": "px", + "canvasMaxHeight": "1000", + "canvasBackgroundColor": "", + "backgroundFxQuery": "" + } + }, + "appId": "d328c6b4-b2ab-49c5-ae0c-6e35cb444f61", + "currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "createdAt": "2023-08-11T05:25:31.673Z", + "updatedAt": "2023-10-10T08:28:07.895Z" + } + ], + "appEnvironments": [ + { + "id": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "production", + "isDefault": true, + "priority": 3, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "staging", + "isDefault": false, + "priority": 2, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + }, + { + "id": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84", + "name": "development", + "isDefault": false, + "priority": 1, + "enabled": true, + "createdAt": "2023-04-26T19:44:06.852Z", + "updatedAt": "2023-04-26T19:44:06.852Z" + } + ], + "dataSourceOptions": [ + { + "id": "dc16dddb-6eb9-4a56-8b83-c7821c1be3e4", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ed34011-fb0c-4df6-9ac3-c0722e5afc15", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "603ecf7a-24ca-4102-a3a2-9adf3540d47f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "064644df-c753-4c38-a368-08760a852289", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "63a0be80-a870-4cc2-ab64-8127efbd108d", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "869450d4-61c3-4d90-b714-4b1881e39518", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd7cbbff-0d68-4493-983d-37b726ebc98c", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3e4c6b07-8e27-4163-a2f2-cbb55942f87b", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "70a7e577-d084-40ce-a5e7-058c86912c66", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "gcp_key": { + "credential_id": "ca37482f-4921-4c56-87dc-6b2eae124de4", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "35c27146-7fc0-4b09-a2ce-0f245bbf714b", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3bfaae26-a193-41be-a6df-6c854851ec90", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a1d06fc-5357-4784-8468-61886137214b", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "4ebed5f4-aa04-4674-88b5-475de6305c15", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "09bf5c38-8cec-4973-8855-643c5133d87e", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4254e048-0e9c-4173-ac9b-6448fdfe0272", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "81c95c9d-4d5c-4509-bcc0-9b6db463646a", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "gcp_key": { + "credential_id": "a4fec9af-15b8-4288-a3dc-c6797f050b2c", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df6525aa-cba3-40aa-92be-d908007f1d47", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "427cc0a3-b736-4552-a043-849312f72535", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "fd4bc72c-00f5-42d5-9fe6-758b3c4e05a1", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "1ffbf05e-51d6-4087-a11f-b4d7e431dc83", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8210c7ae-f59e-4bea-b0c5-50c118343441", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "72371933-729a-4e35-9915-950ed7d1a6da", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b92d7e20-aef7-408c-a5fd-cfb1afe3802f", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a980201d-0197-41af-8b44-5b9a777d08db", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a115c49b-a119-40d0-8db0-f020724207ad", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e138a408-40a3-4a04-8f43-d4d9f77b670d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "58c756e7-4ac8-47e5-ad47-dd9f3bd54bd6", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "49a16184-fb7f-4302-8f3a-183203af3e13", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "109373cc-a29d-49cf-9c09-b78d9000c797", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "394cd4b9-6678-4666-a3b4-7220fdc9f3fa", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd79676a-f641-4f13-897c-a4487298e956", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "df795abb-982a-4a49-852a-6e049d72b063", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "08bc41cc-49b7-46f1-a7d8-e491f3b1e687", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e5d9ca99-a662-4dc3-bb06-11d3efc5b0e6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9ce12342-7f72-4170-a0c3-a2fa750b08ec", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "9c069f5a-1e8c-432e-ac34-4bd3102d8c84", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "8a59db8a-b46b-4411-ba16-c6e9614fde09", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "6fc0a89f-6fe0-48ed-b085-f1ba06c15b00", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b5192850-7615-4e13-b1ae-93b956f5be03", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "3eb4f10b-d70f-457b-a6d6-1facf33bb388", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "649ebc41-1207-4383-ac37-affebaf46025", + "dataSourceId": "0711cdb2-fa20-4f94-acb4-680fcfa19118", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "2b64c284-3043-4011-b501-7438f977e8d6", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "66234021-3d1e-4314-aa85-233e15c788c4", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "b3ca510b-fd4d-48b1-a204-39905d3553d6", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0af3f0c9-bf1e-4b60-8868-25dcaa5c509c", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "42d8efc3-5c1a-4085-a259-b38e0a5c2df5", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "7e49e5a8-08d7-4a02-897c-13d235ab00f9", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f7cf3288-f755-40db-ac07-c6f0832b7c6b", + "dataSourceId": "285ee18c-555a-4b62-a4e2-b62a079cc063", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "cd9235bc-aec9-4da1-b22c-e7da50f3cde6", + "dataSourceId": "82446a94-ac62-4cad-9e55-5601ed26a8de", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "5a13235b-390e-4888-bbca-4c0e7e85b811", + "dataSourceId": "d84a158a-1a6b-446b-bc8c-8b7fbc0fa37e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "e096bd24-e396-4893-88dd-2872176057a2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "69f40c97-1d4e-4f87-9a98-7f0a12a3238b", + "dataSourceId": "55b43187-4b59-4d7b-a387-4b056dc216a4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "f9d33ef5-bf7d-4c52-a919-64cd39b5a9c5", + "dataSourceId": "cca12076-07e9-4e2e-9a8a-19797fcfb22b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a011c5e5-60bd-44d4-a057-b5aa23b75aee", + "dataSourceId": "ce6190bf-c3f0-457b-a9a4-07b80e76800a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "bb811868-ea85-4b54-8a13-e999971eeb9d", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "24db297d-9213-4102-a253-26a34565ee73", + "dataSourceId": "f96b5e70-eccf-4387-934e-cda14b63bb95", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "73e98e30-9fd0-4ee2-b001-a91cc6fa8396", + "dataSourceId": "360aabbe-2e61-4458-8d29-b514461dcef0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "4bb78281-112c-411c-9fc1-fe6b8c4ef0c9", + "dataSourceId": "277f0de0-0ae8-4ef5-ad47-ab6db3ddb401", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "4edc07e1-819c-433d-9545-7156e0813abf", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "7eb5fab2-76bb-4457-b049-d2fc338cd143", + "dataSourceId": "a36b815e-d203-4dd6-946d-bafafed921a5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a729b4d1-1520-4a4f-92d9-5b4d39e609a7", + "dataSourceId": "fffbc2f2-07cf-4f52-a1c7-19419d531d85", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "0c980db9-a929-481a-be6a-b71ea5ad2107", + "dataSourceId": "db4b8422-3f40-4bea-b448-41d6ceb48f8b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "gcp_key": { + "credential_id": "7f703daa-1e72-4a75-bc70-884816577a05", + "encrypted": true + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "a1043e60-e673-4041-a64f-e26e4609cdbf", + "dataSourceId": "f22a9d1e-bd85-4ff2-9415-f0c71d754df2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "100298a0-928d-4589-a70f-34a0926a28a1", + "dataSourceId": "5ef13428-5206-4b0e-9d0a-abdab2cf3b1e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "aba37959-1599-4a70-ae4c-7b05ffa2a800", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e950b029-4156-4afe-8a18-e7927aafc191", + "dataSourceId": "b7ccc13a-a7ec-415c-95f5-94d447c63177", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "ca1f9156-a727-4e4d-b609-396d9ad65b7a", + "dataSourceId": "58b341fa-a813-4ed2-b39a-3e6bc2b89817", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "e8040071-0a1a-4e11-a04f-7cbc179d5868", + "dataSourceId": "d5aa7805-99af-4b25-8869-6e4156840470", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "templates-sg.cid8c0avwtmj.us-west-1.rds.amazonaws.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "ef525392-c7cb-431d-8525-afd52f2a0131", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-01-10T09:11:03.348Z", + "updatedAt": "2023-01-10T09:11:03.348Z" + }, + { + "id": "fd459a47-9e32-448b-a362-a957ed61a744", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "ea086241-7ebf-42b3-a9e0-98e7f9615fde", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.259Z", + "updatedAt": "2023-02-07T08:20:48.259Z" + }, + { + "id": "2f3691b6-4dc5-49db-be70-2646b0b37b3e", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "88454045-b2a0-4f59-baf5-0f32a0f5000c", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.268Z", + "updatedAt": "2023-02-07T08:20:48.268Z" + }, + { + "id": "0a14939a-e6e2-4156-833d-692fa2374241", + "dataSourceId": "59a162f9-631c-4713-9bf1-0e1691ebce87", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "0d46628b-d8e9-4463-b4d1-bf254a825ffd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T08:20:48.273Z", + "updatedAt": "2023-02-07T08:20:48.273Z" + }, + { + "id": "fcd55e6a-7b48-4541-b86b-8fc5d661ff08", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.283Z", + "updatedAt": "2023-02-07T08:20:48.283Z" + }, + { + "id": "3e6b2492-3d73-4792-b447-3bd27a74d424", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.287Z", + "updatedAt": "2023-02-07T08:20:48.287Z" + }, + { + "id": "506a0e32-25c0-4a19-a6f7-9d04c339d28b", + "dataSourceId": "591145c4-341c-492e-95f0-a5eece11b5e5", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.289Z", + "updatedAt": "2023-02-07T08:20:48.289Z" + }, + { + "id": "6b19a6ab-7756-4386-9592-6ab4d5fa98d1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.295Z", + "updatedAt": "2023-02-07T08:20:48.295Z" + }, + { + "id": "af5be5e6-666d-4437-a75c-a10830980dbe", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.297Z", + "updatedAt": "2023-02-07T08:20:48.297Z" + }, + { + "id": "983162ea-8848-4388-b88c-971523d0cbb1", + "dataSourceId": "1b3b7f89-db1a-41ae-abae-e4e11db72a9a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.299Z", + "updatedAt": "2023-02-07T08:20:48.299Z" + }, + { + "id": "a308e389-9497-4f1b-9564-5424a0a0b7b1", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.348Z", + "updatedAt": "2023-02-07T08:20:48.348Z" + }, + { + "id": "18d6b459-7d7d-4ba0-9ee7-c581844e0d45", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.351Z", + "updatedAt": "2023-02-07T08:20:48.351Z" + }, + { + "id": "478e9b22-6f4d-45fa-b50f-77b45a616669", + "dataSourceId": "245273f1-a53e-418f-b522-b5830111243d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.353Z", + "updatedAt": "2023-02-07T08:20:48.353Z" + }, + { + "id": "bd491146-3009-418f-a4d6-5e976d966a01", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-02-07T08:20:48.356Z", + "updatedAt": "2023-02-07T08:20:48.356Z" + }, + { + "id": "9383e443-5c0f-4fe9-ac9a-273971edd22b", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-02-07T08:20:48.357Z", + "updatedAt": "2023-02-07T08:20:48.357Z" + }, + { + "id": "764bce5d-3227-4681-806f-50051e97a6f1", + "dataSourceId": "f02878f7-be72-435c-a103-ca27c5c8365f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-02-07T08:20:48.359Z", + "updatedAt": "2023-02-07T08:20:48.359Z" + }, + { + "id": "2f79cbc9-4ecc-4a2a-8f14-624961660a51", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "2f701e52-7cfe-49a8-bb40-956ed45342d1", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.858Z", + "updatedAt": "2023-02-07T10:13:59.858Z" + }, + { + "id": "ce715761-73f2-46b1-95f2-124d2b098a77", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "da58d6d5-09e3-4d72-a3cb-48277e4d5379", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.863Z", + "updatedAt": "2023-02-07T10:13:59.863Z" + }, + { + "id": "116031c1-ee38-483d-9625-b13548d97459", + "dataSourceId": "b7468521-1dbc-4f6e-908e-f553a3f6d31b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "qa_testcases", + "encrypted": false + }, + "username": { + "value": "arpitnath", + "encrypted": false + }, + "password": { + "credential_id": "999deb1f-6190-4508-8607-2b57a9acf977", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-02-07T10:13:59.867Z", + "updatedAt": "2023-02-07T10:13:59.867Z" + }, + { + "id": "9da2713d-98d6-4388-a5e7-42cb22d2a0f9", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "d5b29186-21d7-45e3-a40c-7d3a4a6306e2", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.762Z" + }, + { + "id": "9659e653-8eca-4ed1-9cfa-c27c3080bc61", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9fe7b96b-8899-40ae-bfb2-f2c56c89389e", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.834Z" + }, + { + "id": "4ba4ad64-bdac-45e2-a112-da4bb720e654", + "dataSourceId": "469d2e06-db78-470f-9f28-505529ca32ef", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "instanceName": { + "value": "", + "encrypted": false + }, + "port": { + "value": 1433, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "f20d22f2-75db-4ff7-94d1-3667878c031b", + "encrypted": true + }, + "azure": { + "value": false, + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:06:53.700Z", + "updatedAt": "2023-07-07T10:06:53.842Z" + }, + { + "id": "1c193e6d-f21a-4945-a1a3-0271900258ef", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1852e614-7f87-4e16-8d35-ae924ce2193b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.450Z", + "updatedAt": "2023-07-07T10:07:23.333Z" + }, + { + "id": "f9ff54d6-55af-4428-ad9a-75343cd2cd36", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e3baf697-ea3e-4f03-be01-db6d0344f635", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.698Z" + }, + { + "id": "7c172ef0-eabb-4ce1-9fef-7534e4804218", + "dataSourceId": "7390f25a-5b52-4eca-8b50-2ce2aaa0ed5e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 1521, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "database_type": { + "value": "SID", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b159f378-74b0-44cb-9b04-ea4a1c02bd09", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "client_path_type": { + "value": "default", + "encrypted": false + }, + "instant_client_version": { + "value": "21_10", + "encrypted": false + } + }, + "createdAt": "2023-07-07T10:07:19.451Z", + "updatedAt": "2023-07-07T10:07:19.706Z" + }, + { + "id": "c85938e4-7be9-46c6-b37f-045435dc17e7", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "91112338-8edc-437e-a066-eb7445b8c9f0", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "a754d3d0-ff68-47b0-ad58-073862e0e78a", + "dataSourceId": "7ec28d42-e688-49bc-8266-b3727edb39f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-07-21T15:39:41.748Z", + "updatedAt": "2023-07-21T15:39:41.748Z" + }, + { + "id": "57204c96-1590-49d0-ae82-85d6096b4f3f", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.753Z", + "updatedAt": "2023-07-21T15:39:41.753Z" + }, + { + "id": "5d8aeece-e171-4f98-a17a-dafcf094eefc", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.754Z", + "updatedAt": "2023-07-21T15:39:41.754Z" + }, + { + "id": "37f7e000-2b47-429f-b7e4-9e024479d9b8", + "dataSourceId": "4ddb9a19-ff14-4fbc-a6f6-1edb7d9ec064", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.756Z", + "updatedAt": "2023-07-21T15:39:41.756Z" + }, + { + "id": "fb85fb2c-9aed-4dda-b167-d9b95bd8695f", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.762Z", + "updatedAt": "2023-07-21T15:39:41.762Z" + }, + { + "id": "57bc1c57-3a79-4f8c-8f82-743783098320", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.764Z", + "updatedAt": "2023-07-21T15:39:41.764Z" + }, + { + "id": "e3df8c1e-e689-460e-a1c0-a6ac34e2c6fb", + "dataSourceId": "bb294b3d-5f44-4670-bc65-c4af788ec127", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.765Z", + "updatedAt": "2023-07-21T15:39:41.765Z" + }, + { + "id": "ddb73901-f6b8-4e98-a98e-d20764e981d5", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-07-21T15:39:41.770Z", + "updatedAt": "2023-07-21T15:39:41.770Z" + }, + { + "id": "64ded0f0-a523-46e0-8de4-1233af798e69", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-07-21T15:39:41.773Z", + "updatedAt": "2023-07-21T15:39:41.773Z" + }, + { + "id": "563951c4-3c25-4c16-85bd-bf35c67c541d", + "dataSourceId": "e9d04e7c-e07d-4158-869a-20b4e7ef5fc9", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-07-21T15:39:41.774Z", + "updatedAt": "2023-07-21T15:39:41.774Z" + }, + { + "id": "7054580b-dcf1-42db-8599-b295874586e4", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "apiKey": { + "credential_id": "309cd1c4-4241-4757-9216-7c1d5052a6f2", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.508Z" + }, + { + "id": "69646d74-947f-4ac7-9560-b58fce035d3c", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "apiKey": { + "credential_id": "02ea1d76-bf4e-40b5-a57a-ad02467754d7", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.489Z" + }, + { + "id": "35da5f37-e660-4711-8b89-3ed348857e88", + "dataSourceId": "d8269490-06fa-45c8-9327-beb82f728298", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "apiKey": { + "credential_id": "61601401-8d9b-47d8-81cc-fcb0ab9df125", + "encrypted": true + } + }, + "createdAt": "2023-07-26T05:47:45.471Z", + "updatedAt": "2023-07-26T05:47:45.509Z" + }, + { + "id": "607909a2-1d4d-4bab-8468-1f0f8351ab14", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.735Z", + "updatedAt": "2023-08-11T05:25:31.735Z" + }, + { + "id": "9423866f-d475-42c3-b2a7-c63be6ed9abb", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.739Z", + "updatedAt": "2023-08-11T05:25:31.739Z" + }, + { + "id": "90a1596f-5d45-4ad4-a376-3b555f4773bd", + "dataSourceId": "cca69107-99f4-4923-9b92-cd72ed7a893d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.741Z", + "updatedAt": "2023-08-11T05:25:31.741Z" + }, + { + "id": "a41de1f3-3486-4f59-a964-fd99a077d61b", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.747Z", + "updatedAt": "2023-08-11T05:25:31.747Z" + }, + { + "id": "5b452053-b728-48ea-969f-35ee44bd449e", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.750Z", + "updatedAt": "2023-08-11T05:25:31.750Z" + }, + { + "id": "b4e5d146-7682-44c6-b009-9a59a3a144bb", + "dataSourceId": "34ec3298-43c3-463e-b1f6-0244f6ffb63f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.752Z", + "updatedAt": "2023-08-11T05:25:31.752Z" + }, + { + "id": "d01715d9-1ffb-405e-b5e3-b9d786697627", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.761Z", + "updatedAt": "2023-08-11T05:25:31.761Z" + }, + { + "id": "fff3b76b-14f9-49c2-9520-ccff9f3b0239", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.764Z", + "updatedAt": "2023-08-11T05:25:31.764Z" + }, + { + "id": "c1136230-787e-4985-afa3-ec88e383b3c1", + "dataSourceId": "987b720e-93e9-4470-bb4e-52c326c3e418", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.766Z", + "updatedAt": "2023-08-11T05:25:31.766Z" + }, + { + "id": "6e14d7b5-99db-4f14-84e4-8fa34ca096da", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:25:31.772Z", + "updatedAt": "2023-08-11T05:25:31.772Z" + }, + { + "id": "a0bed57b-7aae-4a5a-b154-49cdd9e508cb", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:25:31.775Z", + "updatedAt": "2023-08-11T05:25:31.775Z" + }, + { + "id": "13272f64-55dc-4fd9-a692-9dc9afe40b97", + "dataSourceId": "f34597e1-c970-413f-8ef9-b0afa972c5bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:25:31.780Z", + "updatedAt": "2023-08-11T05:25:31.780Z" + }, + { + "id": "abbd66ec-c0a2-4893-8bd1-a90100ec7963", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.785Z", + "updatedAt": "2023-08-11T05:25:31.785Z" + }, + { + "id": "563d611b-ed1e-46a1-bad7-f1ffd91cffef", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connection_limit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf05673058", + "encrypted": false + }, + "password": { + "value": "08BcGsD9))xK7rpLAKDw8QK", + "encrypted": false + }, + "host": { + "value": "dbpwf05673058.sysp0000.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "supplychain", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.788Z", + "updatedAt": "2023-08-11T05:25:31.788Z" + }, + { + "id": "eb8f5145-06ae-4ee6-bd79-26bbacf672d7", + "dataSourceId": "98c2b7e5-ee9d-4777-9f46-efaca13d913b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": "", + "encrypted": false + }, + "user": { + "value": "dbpwf16910822", + "encrypted": false + }, + "password": { + "value": "hl64D5w7f68LSE)Pwo8Ah", + "encrypted": false + }, + "host": { + "value": "dbpwf16910822.sysp0001.db1.skysql.mariadb.com", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "port": { + "value": "3306", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:25:31.791Z", + "updatedAt": "2023-08-11T05:25:31.791Z" + }, + { + "id": "d8dbbb97-667b-42cf-8e1d-c3920b91ae0a", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "aa622b9c-27c6-45c6-8ec7-471e4a346a7c", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "34b17572-60b1-4895-bd93-5c85ba03b319", + "dataSourceId": "b2cd3dca-a7fa-4dff-81f2-a5a22ed93633", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T05:27:56.798Z", + "updatedAt": "2023-08-11T05:27:56.798Z" + }, + { + "id": "3d4a1b27-f9bd-47ae-aaaa-d1564e91456a", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.804Z", + "updatedAt": "2023-08-11T05:27:56.804Z" + }, + { + "id": "525b25cb-90b1-4d2c-80cf-b4fc2b3e4fee", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.807Z", + "updatedAt": "2023-08-11T05:27:56.807Z" + }, + { + "id": "4a853db8-3f1d-4cf2-93c2-ce3e28266b36", + "dataSourceId": "1c65da59-7bbb-4887-b9d8-df5fe917d47f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.809Z", + "updatedAt": "2023-08-11T05:27:56.809Z" + }, + { + "id": "846b03f8-f6e1-4a79-8ae7-d545c1f4f0b5", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.813Z", + "updatedAt": "2023-08-11T05:27:56.813Z" + }, + { + "id": "4de0613b-4f14-40c9-aeac-7d027ff73833", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.815Z", + "updatedAt": "2023-08-11T05:27:56.815Z" + }, + { + "id": "69eb4761-b882-4c51-8e11-e568731bc43e", + "dataSourceId": "240d08b8-2526-4f4a-9871-5f02135d0d67", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.818Z", + "updatedAt": "2023-08-11T05:27:56.818Z" + }, + { + "id": "564f68c5-4980-493f-9699-1ff567482fd0", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:27:56.821Z", + "updatedAt": "2023-08-11T05:27:56.821Z" + }, + { + "id": "06d2856d-000f-47d1-a7ff-8e818eb42478", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:27:56.824Z", + "updatedAt": "2023-08-11T05:27:56.824Z" + }, + { + "id": "f2579e45-a0bd-423f-b724-9af76d33ea87", + "dataSourceId": "96e27a7b-dc3b-452b-9261-dcb5d2398ccb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:27:56.825Z", + "updatedAt": "2023-08-11T05:27:56.825Z" + }, + { + "id": "773493c0-efdf-465a-bab1-910a8ff9c6c8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "5a426139-fa01-4ea3-b1fe-9794e901503f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.832Z", + "updatedAt": "2023-08-11T05:27:56.832Z" + }, + { + "id": "026abb10-56a6-488b-b36c-f55d613893fc", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "1c465591-2ecf-4a81-945f-8dc32d7d12c5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.838Z", + "updatedAt": "2023-08-11T05:27:56.838Z" + }, + { + "id": "6c3b028c-314a-4534-8660-d412d627cda8", + "dataSourceId": "7804926d-9ee5-44f5-9a13-041742a0d835", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": "", + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "159a0956-8cfb-4aa6-8a3a-e833042c6a86", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:27:56.845Z", + "updatedAt": "2023-08-11T05:27:56.845Z" + }, + { + "id": "67450519-17ee-4c56-a7ea-a0a596d3f139", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.231Z", + "updatedAt": "2023-08-11T05:30:20.231Z" + }, + { + "id": "ebb05718-564b-48dc-be97-fe9042a03a32", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.233Z", + "updatedAt": "2023-08-11T05:30:20.233Z" + }, + { + "id": "906cfd94-81db-408d-8771-ac9dd7475525", + "dataSourceId": "e33b3315-be6b-43b0-a3f4-6c75d3cf5965", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.235Z", + "updatedAt": "2023-08-11T05:30:20.235Z" + }, + { + "id": "8ce3c15e-ce3c-443b-be1b-41de4ba604c5", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.239Z", + "updatedAt": "2023-08-11T05:30:20.239Z" + }, + { + "id": "c09660a0-0d13-4c77-825b-05035e7009d3", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.241Z", + "updatedAt": "2023-08-11T05:30:20.241Z" + }, + { + "id": "81225ea3-efa6-497f-a7a0-c4993eb0ccf4", + "dataSourceId": "ef8bc4eb-5763-475a-945d-0571eccceece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.243Z", + "updatedAt": "2023-08-11T05:30:20.243Z" + }, + { + "id": "fe1d2b79-b36f-4b6a-a169-05c7dfc012ae", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.246Z", + "updatedAt": "2023-08-11T05:30:20.246Z" + }, + { + "id": "c006f812-b14d-492f-bbb3-473498b1f0d1", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.249Z", + "updatedAt": "2023-08-11T05:30:20.249Z" + }, + { + "id": "44bb1b06-e6d5-4762-ae62-1ee890f646b3", + "dataSourceId": "0e1765a8-760b-4a83-ab95-3a534f3cf430", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.250Z", + "updatedAt": "2023-08-11T05:30:20.250Z" + }, + { + "id": "15054e36-8e1f-410c-8038-1682aa54bc0e", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:20.255Z", + "updatedAt": "2023-08-11T05:30:20.255Z" + }, + { + "id": "114ca108-5785-41e3-a668-f93b0786d3a3", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:20.258Z", + "updatedAt": "2023-08-11T05:30:20.258Z" + }, + { + "id": "8932558d-cc2f-48bc-9073-67284f5519b2", + "dataSourceId": "19379c99-c3d5-4cbd-9633-8e0dc9d56c40", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:20.260Z", + "updatedAt": "2023-08-11T05:30:20.260Z" + }, + { + "id": "16722499-31b5-4b46-b1df-ed4ad1acc8ec", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.039Z", + "updatedAt": "2023-08-11T05:30:51.039Z" + }, + { + "id": "9a318479-eeab-4446-801a-52e9cfd3070d", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.041Z", + "updatedAt": "2023-08-11T05:30:51.041Z" + }, + { + "id": "8e8d8043-75c0-4d79-b653-6878cf3443d4", + "dataSourceId": "5b6ee06f-8f40-4dc0-b93c-6f331c09e16d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.043Z", + "updatedAt": "2023-08-11T05:30:51.043Z" + }, + { + "id": "9f7ac124-bb3d-49b3-a31e-22d3748893aa", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.046Z", + "updatedAt": "2023-08-11T05:30:51.046Z" + }, + { + "id": "9a550543-805f-4b34-aa13-b92d02f1ffcb", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.049Z", + "updatedAt": "2023-08-11T05:30:51.049Z" + }, + { + "id": "d33927b6-68cb-491c-89ab-92eba9e9e420", + "dataSourceId": "fb7ba320-0c2f-4b72-834c-c1ca73066ece", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.050Z", + "updatedAt": "2023-08-11T05:30:51.050Z" + }, + { + "id": "1cf19dac-8763-472b-a7c3-79bd785fe5c2", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.054Z", + "updatedAt": "2023-08-11T05:30:51.054Z" + }, + { + "id": "8b0aba4d-a18b-46e0-b6f8-74e3d0e120d0", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.056Z", + "updatedAt": "2023-08-11T05:30:51.056Z" + }, + { + "id": "ce5afd07-2e89-4459-9316-52d3a1ff4cc8", + "dataSourceId": "e3bafba7-75c5-4160-847c-c06740afe8b3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.058Z", + "updatedAt": "2023-08-11T05:30:51.058Z" + }, + { + "id": "3705a1ca-7f79-4b54-b2f3-9c9c51ac15fb", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-11T05:30:51.061Z", + "updatedAt": "2023-08-11T05:30:51.061Z" + }, + { + "id": "9f910e79-2e89-4b95-8f51-e4c8f468bb06", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-11T05:30:51.063Z", + "updatedAt": "2023-08-11T05:30:51.063Z" + }, + { + "id": "c29e2d61-df14-4058-be31-0e6049af3767", + "dataSourceId": "9fd53f6d-62f9-4286-b46c-a26d7fb00281", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-11T05:30:51.065Z", + "updatedAt": "2023-08-11T05:30:51.065Z" + }, + { + "id": "a71b2210-07a0-4306-9e9a-58a67cbb16fb", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "970a7dc8-1b45-4629-85f4-0c90d979ac77", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.071Z", + "updatedAt": "2023-08-11T05:30:51.071Z" + }, + { + "id": "ca31376b-a3c7-4816-94f9-6a5f33a18752", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "84b081aa-1af2-4c94-a3f9-0aab8fbb4387", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.076Z", + "updatedAt": "2023-08-11T05:30:51.076Z" + }, + { + "id": "2b3ad55c-e489-4b64-8bb0-3259c2226b9b", + "dataSourceId": "f8ad064f-f470-4714-b6ae-fbd08c1af0cf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp-relay.sendinblue.com", + "encrypted": false + }, + "port": { + "value": 465, + "encrypted": false + }, + "user": { + "value": "teja.kummarikuntla@gmail.com", + "encrypted": false + }, + "password": { + "credential_id": "daf902f8-4130-4b27-b809-054142b85533", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.080Z", + "updatedAt": "2023-08-11T05:30:51.080Z" + }, + { + "id": "e11d8442-b59c-41b4-907b-d6a9d39ba8f4", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "d80cea6e-acc6-4f7d-ba45-33907f1577a8", + "encrypted": true + }, + "refresh_token": { + "credential_id": "1f33c798-34fc-43e6-8194-af259c5896fd", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.093Z", + "updatedAt": "2023-08-11T05:30:51.093Z" + }, + { + "id": "e47dd2ed-a90a-497a-a10e-b8b2e3581137", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.095Z", + "updatedAt": "2023-08-11T05:30:51.095Z" + }, + { + "id": "b331e4cc-f6d1-4ea8-a8a6-ca6b7d5e1417", + "dataSourceId": "df3508fa-014f-4a23-b4a3-b73257c6fb12", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_type": { + "value": "chat:write", + "encrypted": false + }, + "access_token": { + "credential_id": "4e208265-326a-4c8f-bcfd-ade4f891b09f", + "encrypted": true + }, + "refresh_token": { + "credential_id": "a88ef077-9fe4-4c13-9be2-5ad9f8581e63", + "encrypted": true + } + }, + "createdAt": "2023-08-11T05:30:51.100Z", + "updatedAt": "2023-08-11T05:30:51.100Z" + }, + { + "id": "954bf10a-73d9-4f69-8bdf-0343ecb9b914", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "d78c54cb-2c98-4f47-b84a-48b1559d06a6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.108Z", + "updatedAt": "2023-09-08T05:45:17.147Z" + }, + { + "id": "5dd687e3-f975-40ba-a09c-5c38207cec2a", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "floppy.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "vqkzqsrn", + "encrypted": false + }, + "username": { + "value": "vqkzqsrn", + "encrypted": false + }, + "password": { + "credential_id": "046fbaa7-1e06-4272-a199-ecac4e8d3652", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.112Z", + "updatedAt": "2023-08-11T05:30:51.112Z" + }, + { + "id": "dd1e77b2-4316-4422-a7db-0757cebd5ce7", + "dataSourceId": "82246342-cb31-4553-80c8-5a07461965b0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "ruby.db.elephantsql.com", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "xocrerjd", + "encrypted": false + }, + "username": { + "value": "xocrerjd", + "encrypted": false + }, + "password": { + "credential_id": "42639ba9-6e81-4dd0-b614-bbb576283aff", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T05:30:51.116Z", + "updatedAt": "2023-08-11T05:30:51.116Z" + }, + { + "id": "e8a9d1a1-2e9d-4717-8c68-e9c461114ce6", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "0896f5b5-90db-4ec6-8058-ec2c2d2cfc41", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.304Z" + }, + { + "id": "12ab2f62-ccf2-4d1c-9c76-6207b5d7c511", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "599802c3-5323-465b-8339-26dbab02c131", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.303Z" + }, + { + "id": "f63bacf8-aa52-4936-b5bf-6cc042c691f9", + "dataSourceId": "a0308b67-6ef4-4f2e-a9e2-e671766494aa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "postgres", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "913cdee9-d649-4d0f-a70c-e8054e7ffcc7", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:37:53.291Z", + "updatedAt": "2023-08-11T11:37:53.297Z" + }, + { + "id": "e07bce03-8500-48b0-b1ff-f4f89d85dfda", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "2e0f0d5c-2025-4829-88ce-b7273c9bd21a", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "connectionLimit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:36.009Z" + }, + { + "id": "46e10728-7756-4ff0-aafa-e5c93d8f78fd", + "dataSourceId": "1fd21515-73a3-41f2-b525-ca76dc7aab37", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "connection_limit": { + "value": 5, + "encrypted": false + }, + "user": { + "value": "root", + "encrypted": false + }, + "password": { + "value": "y4brCMAwTDkhSntE", + "encrypted": false + }, + "host": { + "value": "54.151.107.253", + "encrypted": false + } + }, + "createdAt": "2023-08-11T11:38:35.999Z", + "updatedAt": "2023-08-11T11:38:43.023Z" + }, + { + "id": "1e833a39-b02e-4875-82b6-41cf152a1a1e", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "7fefa8e8-ae6f-4125-a633-7d0a86f0ef34", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "fc132ba2-e883-42bf-9438-aa8662beb474", + "dataSourceId": "4c5619e6-bfed-4ed7-85e0-5771904e25d8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.025Z", + "updatedAt": "2023-08-11T12:04:29.025Z" + }, + { + "id": "18f07210-2414-4acf-a61e-14335775ee2e", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "5f6c58ad-e405-4078-ad28-0c589bcd3cd5", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "231d0729-4492-4fce-b255-b0da72228478", + "dataSourceId": "02283c68-a691-42c9-8d35-4f26f3aec5d4", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.032Z", + "updatedAt": "2023-08-11T12:04:29.032Z" + }, + { + "id": "862bb61e-56c9-4d52-aa7e-4b05c82340a1", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "202ecc77-dfc4-4735-a638-1bc7959287bd", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "cab55bc1-cc1c-4aa2-8b45-973b422f246f", + "dataSourceId": "82826877-de4d-42ca-bfce-517a5e63e0d6", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-11T12:04:29.039Z", + "updatedAt": "2023-08-11T12:04:29.039Z" + }, + { + "id": "5993421e-93b9-4974-8b11-c2031b2733d2", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "3eec46f6-0a59-4281-8573-88bc3ff29761", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "7f623dcd-95d1-4881-b732-61e1dd64e02b", + "dataSourceId": "6f4d5fa3-ae3a-42e4-9eee-7b092c92bafa", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-18T13:54:52.350Z", + "updatedAt": "2023-08-18T13:54:52.350Z" + }, + { + "id": "fb416dce-f856-477d-a782-b397845d9781", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "bcde9950-77ee-417a-88ae-0ebe400e370d", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "097eaeee-321a-49c3-a9ce-25280a107028", + "dataSourceId": "1303e1b3-1679-417e-97c0-9ee6db4b87e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-21T13:56:27.963Z", + "updatedAt": "2023-08-21T13:56:27.963Z" + }, + { + "id": "308e77b5-ce45-4c86-9742-6c7607fed5a1", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.970Z", + "updatedAt": "2023-08-21T13:56:27.970Z" + }, + { + "id": "f03a0824-fcec-4ac6-87b6-4a9840211de6", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.973Z", + "updatedAt": "2023-08-21T13:56:27.973Z" + }, + { + "id": "0af87cd8-ba96-497f-b4bc-d12ebf047ad2", + "dataSourceId": "d46110cb-2c7e-4787-9c91-74888923355e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.975Z", + "updatedAt": "2023-08-21T13:56:27.975Z" + }, + { + "id": "ee60edbf-1eca-43a3-92d8-422ce3fee6a1", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.980Z", + "updatedAt": "2023-08-21T13:56:27.980Z" + }, + { + "id": "c139c723-3f7c-43c0-bf3b-62fc951ce781", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.983Z", + "updatedAt": "2023-08-21T13:56:27.983Z" + }, + { + "id": "43448873-bf13-4c5d-a4e7-651196b9a342", + "dataSourceId": "e85099b3-9f8d-4463-bd46-d43c8b6bf0c0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.985Z", + "updatedAt": "2023-08-21T13:56:27.985Z" + }, + { + "id": "f573eb7d-ac39-4b75-be62-ae7765965959", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:27.991Z", + "updatedAt": "2023-08-21T13:56:27.991Z" + }, + { + "id": "b0b405ad-9af6-40e9-ad47-d00543b21d5b", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:27.993Z", + "updatedAt": "2023-08-21T13:56:27.993Z" + }, + { + "id": "81cf7c3b-2b18-4dfb-862d-61ea48c93731", + "dataSourceId": "de5123fb-d2c7-4102-b0bd-206c189abc55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.995Z", + "updatedAt": "2023-08-21T13:56:27.995Z" + }, + { + "id": "99ffb143-7554-4771-8748-e8e0692c353d", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-21T13:56:27.999Z", + "updatedAt": "2023-08-21T13:56:27.999Z" + }, + { + "id": "b58b48b1-3df7-4837-957a-8651dfa10495", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-21T13:56:28.002Z", + "updatedAt": "2023-08-21T13:56:28.002Z" + }, + { + "id": "b0823937-7525-441f-bac2-b76c128f4b9a", + "dataSourceId": "726a3886-d5e4-4f33-afe8-69cd835e4d25", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-21T13:56:28.004Z", + "updatedAt": "2023-08-21T13:56:28.004Z" + }, + { + "id": "6c7010d0-f8e1-43fb-b3b8-2583dfa97f9d", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "13af9c1c-6e4a-4cc3-aec5-6f725241194e", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "a61c8e71-457e-473b-b7d9-541c8bddf53a", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2496c4bf-eb4b-4c8c-ba0e-3bd7d1b41e31", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "c7771fa2-5315-4e67-ad76-629fa6303bc8", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "824a1517-83c9-4a73-9888-4b1830080aeb", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "d0681729-dd25-4b9b-996f-41975fe920ef", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "8f22a729-62d4-4521-9123-185d35df6a38", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "17638875-3f23-418e-8bb2-8a23c6862772", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "245a4b8d-77f8-469e-b32b-d59962d1ae47", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "f744db0b-412d-4dbd-af66-1d3a1eb9a4e1", + "dataSourceId": "d171bf4b-6584-43e4-a3ec-83e978f892c2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "2055a89b-a704-405d-a0ef-1b78ccfdb625", + "dataSourceId": "9f1a2a9d-3866-4ecf-ab61-53893cb31edc", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "b2165238-e3ba-4293-a5d9-84e15adc1383", + "dataSourceId": "3d876e2b-3f98-4f78-94d2-29b9305de5be", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "71acc523-8faa-41a8-a321-833f71ffb54e", + "dataSourceId": "61f87b9c-9b40-4d34-9475-948ae3479341", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "e234fc17-4936-4a5c-9fb0-1ce868b8fda8", + "dataSourceId": "1b211c26-24fb-4eac-840e-bb2b891c1e4b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-08-23T08:50:15.769Z", + "updatedAt": "2023-08-23T08:50:15.769Z" + }, + { + "id": "3b98d4d8-a48d-47ea-90ca-325cf9c98065", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "ee04414f-bcea-4e44-b701-7e0c3eee4678", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "ef6ae06d-affb-47b6-a5be-440ac2daed1d", + "dataSourceId": "bf0a04d5-8bed-46b6-8ff3-dce079cfef3b", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-24T13:55:23.729Z", + "updatedAt": "2023-08-24T13:55:23.729Z" + }, + { + "id": "aa593377-cec9-4031-a711-103cb8cc4ef5", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "17cbbd55-b2ec-4731-9f32-d47529ff903b", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.254Z" + }, + { + "id": "140ac414-92c7-4b0a-b84e-a315b5f6b5bd", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "b871cb37-8c70-4cef-a625-0d74969071b2", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "9c7c8855-e71b-47f5-a5fd-7493336c60c4", + "dataSourceId": "ac30704f-8da8-4114-8761-3387cd2dc51c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "AKIATFA53SDS6E4F7NHW", + "encrypted": false + }, + "secret_key": { + "credential_id": "adf7ebf4-0f89-4257-959b-3f96fc835df3", + "encrypted": true + }, + "region": { + "value": "us-west-1", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-08-24T16:58:39.246Z", + "updatedAt": "2023-08-24T16:58:39.259Z" + }, + { + "id": "e142d464-2728-4aaa-b497-49252b07e4d9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "c99af3f7-0d85-4de6-8c1d-48d17bcddda9", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "af3cbb6f-7d26-4193-8f89-f7fc22fec91a", + "dataSourceId": "8a21a45f-99a3-49b0-abb9-4cca1958df90", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.226Z", + "updatedAt": "2023-08-28T07:47:13.226Z" + }, + { + "id": "dd9719e3-87c9-4a96-843c-1578489663e2", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "5029c51c-f692-40b6-a032-b053f57d4443", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.233Z", + "updatedAt": "2023-08-28T07:47:13.233Z" + }, + { + "id": "1a133da3-b024-4897-8630-0ece1464b567", + "dataSourceId": "b397488f-0fe9-4a32-ab02-b94eb5dabb86", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.234Z", + "updatedAt": "2023-08-28T07:47:13.234Z" + }, + { + "id": "2cd268e5-7c36-4060-bc24-7ab82838266d", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "025d6ef6-cfdd-4d6d-8441-5868d10c2299", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "87e46111-efff-4524-be64-49d0510152b8", + "dataSourceId": "5f3061fb-1199-4ae1-90f0-601563a54011", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.240Z", + "updatedAt": "2023-08-28T07:47:13.240Z" + }, + { + "id": "b206d8c1-2ac4-4586-8d62-8a418d12e8bf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "9440a869-6e05-49bb-84f2-349be5631406", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "5062282d-ed14-4ff8-b2e2-ad9d8288aeaf", + "dataSourceId": "5f0eb54c-0b17-4389-bde6-1fd30cfda52d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-28T07:47:13.248Z", + "updatedAt": "2023-08-28T07:47:13.248Z" + }, + { + "id": "a4bd1a9b-ee08-4f17-b06d-56fa70c16fd0", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "467f2e41-9f98-4292-8777-242d8f1e7c75", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "4a4c3c21-d3ef-4c1f-a50e-a4c15424dc15", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "677a91dc-4373-4e98-b840-95ec5834597b", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "0349de56-09bb-456a-9cf3-f2c956bef552", + "dataSourceId": "e29080be-40ef-4b86-95f5-baf84b2e7856", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": "3318", + "encrypted": false + }, + "database": { + "value": "user_database", + "encrypted": false + }, + "username": { + "value": "root", + "encrypted": false + }, + "password": { + "credential_id": "3a47e3ba-4340-451c-a047-b7f2fa8520bd", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "connection_type": { + "value": "hostname", + "encrypted": false + } + }, + "createdAt": "2023-08-28T09:50:23.062Z", + "updatedAt": "2023-09-13T04:58:51.180Z" + }, + { + "id": "9e07557c-a502-40d3-aaff-6e58f4be04cf", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "1e38a3cd-d349-4819-98e4-578fd7cb70e2", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "c3ebadb7-d5bd-4077-bbfc-cfce8335d1fa", + "dataSourceId": "a2887830-6a49-4f7b-a2bb-58ff99d9e331", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.608Z", + "updatedAt": "2023-08-30T07:34:00.608Z" + }, + { + "id": "f84c4b0f-7801-4c8e-8ac6-42056d13c9cd", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "4ea736e5-5059-42f8-9ba7-2915c2d98c8d", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "0339a258-570a-40cc-9bef-3ef4ad58d8cb", + "dataSourceId": "4d36cc21-6edd-4b2c-be3b-969afc5e354d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.618Z", + "updatedAt": "2023-08-30T07:34:00.618Z" + }, + { + "id": "e6ff42b5-bbe1-4dbf-b5bf-2b2d88aa23c8", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "2c58a954-1de0-489d-bfc2-595ed5ea523c", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "466513d1-128c-441b-9103-3d538f334dfc", + "dataSourceId": "e412d1da-bd1f-487a-9cef-28650dc0a8e3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.624Z", + "updatedAt": "2023-08-30T07:34:00.624Z" + }, + { + "id": "ecac8c08-1ba1-4780-bf2c-f57cad1f67b2", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "307d6ffc-c0a6-4028-be4c-d78e7046a93a", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "4a31dd03-0da1-48b6-abd9-8e4360c33aa6", + "dataSourceId": "e3af1abb-1040-4406-93b6-23ea89cdf530", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-08-30T07:34:00.631Z", + "updatedAt": "2023-08-30T07:34:00.631Z" + }, + { + "id": "995e8fe7-c094-4382-a525-49b50b600e3e", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "32135ca5-91a6-42ba-ac2a-11a66d970f6d", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.898Z" + }, + { + "id": "5018c012-11c3-47c0-b2f7-44e35570ce45", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "0a43d696-39bc-41ac-a2ae-ca008482f198", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T08:32:35.899Z" + }, + { + "id": "7fb4953a-64fc-442e-9896-687865020ecc", + "dataSourceId": "5c29afd8-47b3-4399-aaa1-6265fd9c6935", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "smtp.mailgun.org", + "encrypted": false + }, + "port": { + "value": "587", + "encrypted": false + }, + "user": { + "value": "postmaster@sandbox2553e63accd04fa28795f364b09c74b2.mailgun.org", + "encrypted": false + }, + "password": { + "credential_id": "f5e67572-5937-4662-b1bb-570c43387028", + "encrypted": true + } + }, + "createdAt": "2023-09-01T08:32:35.885Z", + "updatedAt": "2023-09-01T09:44:58.901Z" + }, + { + "id": "555229cf-1ced-4625-bb08-f1d9dc725141", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "cdae49ab-72be-4e14-9b64-5d180e1e8567", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "3e5d8554-d032-470b-8153-a4f2747a9d3e", + "dataSourceId": "1a143fb6-51ac-433d-ace9-616c845e9439", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.311Z", + "updatedAt": "2023-09-02T09:17:09.311Z" + }, + { + "id": "8ed63dbc-22a8-4baa-9f23-638ea088f650", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "52893971-c1a2-4d81-b95c-9a81de6127e5", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "ca4e9c9e-c0c9-43b1-9f44-93a19c0821c3", + "dataSourceId": "62761b30-662f-415d-85e7-c51513f5d8dd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.319Z", + "updatedAt": "2023-09-02T09:17:09.319Z" + }, + { + "id": "bdde232b-4363-478a-ab0b-7ade4a4af616", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "3239421c-5716-4d0f-aad0-44a2c3d3da09", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "6772e351-893e-413a-a249-02a1604062ef", + "dataSourceId": "d84a9cec-ea7e-496b-8ed3-8e32a5fde168", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.327Z", + "updatedAt": "2023-09-02T09:17:09.327Z" + }, + { + "id": "00e8a108-1284-4a5f-8d0b-159871c5435f", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "dafc2e2a-f62c-482f-829a-b257debf0017", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "f31ee1d7-8396-4fb6-8d07-7c5894b7cbac", + "dataSourceId": "5123199c-2558-4335-b9e2-9f1e7660deff", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-02T09:17:09.334Z", + "updatedAt": "2023-09-02T09:17:09.334Z" + }, + { + "id": "61cdc365-6c81-465f-bcbe-938be0bd0e78", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "api_key": { + "credential_id": "157e86ee-8876-4c40-8b33-2b232a0e4479", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.678Z" + }, + { + "id": "cde99d0e-572c-428d-9d9d-3f1302eb1060", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "api_key": { + "credential_id": "88db6f8c-e0a9-45c6-a929-29f0dac8d907", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.665Z" + }, + { + "id": "c3f0693e-c422-4629-b52d-bbff1fe8e141", + "dataSourceId": "5efdd3bb-64f8-4566-bbef-903c65dd199f", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "api_key": { + "credential_id": "4dd17ec9-4107-4018-812c-2c89e1aa5a4c", + "encrypted": true + } + }, + "createdAt": "2023-09-08T05:43:42.655Z", + "updatedAt": "2023-09-08T05:43:42.676Z" + }, + { + "id": "080e370c-b767-4e8c-b06f-f574f847db9a", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "fb390b10-2760-4c23-acff-50af3bc50063", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "dec7dacb-a6e7-47c7-bb1a-ad7eaf987019", + "encrypted": true + }, + "bearer_token": { + "credential_id": "e5a3f2e7-7ef8-4365-988c-fcd016d5bfa3", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_query_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_auth_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.533Z" + }, + { + "id": "746982f2-cbd0-4f5b-84b3-7aefa7ad9eb8", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "68e8cad0-d2f9-49af-93bc-9a4701e809b1", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b8bedcac-c9d2-4f55-b216-b1dbd48e9dde", + "encrypted": true + }, + "bearer_token": { + "credential_id": "cac95640-d5a7-467b-8f81-9e2387eb8789", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_query_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_auth_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.549Z" + }, + { + "id": "41cafd8f-2f88-463a-bfb0-ea85a737c46e", + "dataSourceId": "68595234-893c-43e8-b316-f78deabfafcf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "b4cc22dc-06aa-41dc-9d60-bf09eee7af8c", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "5ec07818-521c-48fb-91d9-c6e2d0b09bdc", + "encrypted": true + }, + "bearer_token": { + "credential_id": "36fc5283-190e-4577-8986-074bd777d2ae", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_query_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_auth_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "url_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + } + }, + "createdAt": "2023-09-08T05:45:40.518Z", + "updatedAt": "2023-09-08T05:45:40.556Z" + }, + { + "id": "3c0e1b76-6e28-43dc-ae38-ad164f22a5e5", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "3a81117d-b5a9-4b1e-b826-3225234d54e1", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.403Z" + }, + { + "id": "3e6a4aca-c360-4de2-b0f0-c7c1b30de95b", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "6e545171-b88c-4168-86d4-34344a4656a3", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.402Z" + }, + { + "id": "1fb71fef-54ca-48d4-a261-9080d6d90ca1", + "dataSourceId": "532a76f9-e52e-4f7f-b6e9-c49ef87df6ea", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "access_key": { + "value": "", + "encrypted": false + }, + "secret_key": { + "credential_id": "df5cc284-9a76-409b-a0d9-cb644ff98457", + "encrypted": true + }, + "region": { + "value": "", + "encrypted": false + }, + "endpoint": { + "value": "", + "encrypted": false + }, + "endpoint_enabled": { + "value": false, + "encrypted": false + }, + "instance_metadata_credentials": { + "value": "iam_access_keys", + "encrypted": false + } + }, + "createdAt": "2023-09-08T12:15:35.389Z", + "updatedAt": "2023-09-08T12:15:35.397Z" + }, + { + "id": "39877a2d-f1e4-4f26-9c49-d90cc74190e2", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.875Z", + "updatedAt": "2023-09-11T18:11:00.875Z" + }, + { + "id": "833c969c-815d-48ef-a754-9d6718cbe4f8", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.879Z", + "updatedAt": "2023-09-11T18:11:00.879Z" + }, + { + "id": "44b5685c-8ec7-4f1c-bd6c-c8447ae85a27", + "dataSourceId": "9341faf4-34c1-46a8-8a54-ef2632d4bcdd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.881Z", + "updatedAt": "2023-09-11T18:11:00.881Z" + }, + { + "id": "cb7f0613-591f-4fde-b5b0-406e01dc3dd6", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.885Z", + "updatedAt": "2023-09-11T18:11:00.885Z" + }, + { + "id": "586714d4-695b-4ae6-a42d-c001ecf6463a", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.888Z", + "updatedAt": "2023-09-11T18:11:00.888Z" + }, + { + "id": "e129dcee-2b51-402d-8e30-bdfba1755520", + "dataSourceId": "4c16b0aa-a35b-42ee-8cca-99bcee980f8d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.890Z", + "updatedAt": "2023-09-11T18:11:00.890Z" + }, + { + "id": "e4d11fac-5bbc-4988-b737-b2da7a3104c3", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.893Z", + "updatedAt": "2023-09-11T18:11:00.893Z" + }, + { + "id": "5a650bc5-6bfe-4871-8394-0d33b6073c5b", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.895Z", + "updatedAt": "2023-09-11T18:11:00.895Z" + }, + { + "id": "75a7c301-3b1f-44f6-b39e-05471844374f", + "dataSourceId": "7d8d6f12-6d93-4fab-ae3a-f358c1a75079", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.897Z", + "updatedAt": "2023-09-11T18:11:00.897Z" + }, + { + "id": "589eead6-40c6-48d9-afe2-d7ed3b444a28", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.901Z", + "updatedAt": "2023-09-11T18:11:00.901Z" + }, + { + "id": "51968dcb-089c-43ae-9556-669456135607", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.903Z", + "updatedAt": "2023-09-11T18:11:00.903Z" + }, + { + "id": "2c3d0b2f-9f39-40df-9f41-dabedb0b9492", + "dataSourceId": "bbf96279-8c73-4ea3-9311-df4734dda542", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.905Z", + "updatedAt": "2023-09-11T18:11:00.905Z" + }, + { + "id": "d6148b7c-2128-4811-a57a-2330f8209c49", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": {}, + "createdAt": "2023-09-11T18:11:00.911Z", + "updatedAt": "2023-09-11T18:11:00.911Z" + }, + { + "id": "8f230473-a489-4d9a-8f28-0e1fdc446edf", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": {}, + "createdAt": "2023-09-11T18:11:00.914Z", + "updatedAt": "2023-09-11T18:11:00.914Z" + }, + { + "id": "a72c4f12-6497-4196-a766-c2dd1470320f", + "dataSourceId": "ad296b9d-8f33-41f9-b58a-24686f7c51ec", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": {}, + "createdAt": "2023-09-11T18:11:00.916Z", + "updatedAt": "2023-09-11T18:11:00.916Z" + }, + { + "id": "6421f2c0-bc11-4a6b-8cba-87249c888e7d", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7584ee6e-06b2-4ff5-a66f-724e169e5e3d", + "encrypted": true + }, + "bearer_token": { + "credential_id": "aba34fdd-d13e-45ab-8fad-2857c82b3fbb", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "41e67acb-ef8e-4063-b5c5-0484997aa45e", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_query_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_auth_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.646Z" + }, + { + "id": "aaa2f6eb-08b9-41e3-9ce1-9cab650eece9", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "9b5b8b8b-8ff4-4f8d-b5d1-bbb23c706052", + "encrypted": true + }, + "bearer_token": { + "credential_id": "7bf0b7f4-e659-46c7-8cd9-05e0c3393c73", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "a3a6813e-227c-4cab-b513-eea0b3ce4a3c", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_query_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_auth_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.645Z" + }, + { + "id": "49abc85e-8b91-4ea4-aa10-b7ee18c627fa", + "dataSourceId": "6d3ed767-2426-4557-9f27-78cedf6f7c7d", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "format": { + "value": "json", + "encrypted": false + }, + "definition": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "b0460900-6a0d-4798-b107-3713a887f0b4", + "encrypted": true + }, + "bearer_token": { + "credential_id": "0c77121e-5cd0-4b7b-b02f-1b5074df0341", + "encrypted": true + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e3246e5a-a58e-4599-b70a-fe1859a27e18", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_query_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_auth_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "access_token_custom_headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:52:30.621Z", + "updatedAt": "2023-09-13T09:52:30.635Z" + }, + { + "id": "6aaeccbd-6817-4d57-be9a-38292d84dba6", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "8be25480-f672-4392-b0f0-49d3671c37bc", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c35da044-64a1-46cb-be8c-1a584ee843f9", + "encrypted": true + }, + "bearer_token": { + "credential_id": "16765afc-6cf7-40f9-9c96-2f76a4049e3a", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_query_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_auth_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.267Z" + }, + { + "id": "26a69562-bcb4-49e8-a6c7-8277efd9cf93", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "76e0ebc2-0c89-4c92-82d6-60b32daa0ef4", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e8ba03f7-85d0-4209-a04e-df6541f3b8c8", + "encrypted": true + }, + "bearer_token": { + "credential_id": "c93ec91b-8f13-4027-a7b8-fd1d85fd2ede", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_query_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_auth_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.253Z" + }, + { + "id": "349ccd27-d0c2-4a2c-8f9d-c25c828b499e", + "dataSourceId": "ffd87930-fdb1-4a61-b7ed-cc244b597496", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "url": { + "value": "", + "encrypted": false + }, + "auth_type": { + "value": "none", + "encrypted": false + }, + "grant_type": { + "value": "authorization_code", + "encrypted": false + }, + "add_token_to": { + "value": "header", + "encrypted": false + }, + "header_prefix": { + "value": "Bearer ", + "encrypted": false + }, + "access_token_url": { + "value": "", + "encrypted": false + }, + "client_id": { + "value": "", + "encrypted": false + }, + "client_secret": { + "credential_id": "e54d8e8b-4754-42e4-b443-8e3fbc4c41ed", + "encrypted": true + }, + "scopes": { + "value": "read, write", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "0a89973a-6612-4e8a-85be-04737a01c475", + "encrypted": true + }, + "bearer_token": { + "credential_id": "b4def6fe-6194-4fc7-a1aa-c7d5112c66bf", + "encrypted": true + }, + "auth_url": { + "value": "", + "encrypted": false + }, + "client_auth": { + "value": "header", + "encrypted": false + }, + "headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_query_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "custom_auth_params": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "access_token_custom_headers": { + "value": [ + [ + "", + "" + ] + ], + "encrypted": false + }, + "multiple_auth_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-13T09:54:44.237Z", + "updatedAt": "2023-09-13T09:54:44.265Z" + }, + { + "id": "79785d32-3918-4fa5-8ffb-27a38e28fc88", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "54e35441-2b26-4f25-b2a9-29a6ecee2c4f", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "d5b84d8f-fa2a-4571-b601-bb0cfd528db6", + "dataSourceId": "f678cb68-e918-4618-a253-f8b7a0b728b7", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:14.996Z", + "updatedAt": "2023-09-15T12:05:14.996Z" + }, + { + "id": "ec909322-ea53-48ce-aa77-19d39ad28e8b", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "c348f79b-cc81-42a5-9f78-4712159b7fd1", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "9c60f1aa-48e0-4fc9-86fa-ec28ba300680", + "dataSourceId": "219581c7-6d1d-4cf3-8f38-f9379defc819", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.013Z", + "updatedAt": "2023-09-15T12:05:15.013Z" + }, + { + "id": "8d16cc16-1c17-44c1-b6e8-6679425e19e8", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "30dfbc76-5010-462c-aab9-337587984e94", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "9db09200-91d3-4bf4-b4a4-1e5acdbe06d3", + "dataSourceId": "f6bbb20b-d909-41c2-8059-38067dc7b537", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.022Z", + "updatedAt": "2023-09-15T12:05:15.022Z" + }, + { + "id": "41dd15b1-8c32-4ac9-9c39-a94b921b514e", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "825533f2-ca52-4ca1-9e68-89d0fc4d11e5", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "7a9c3ee0-b02d-4fef-8e05-cd3c5ca827cf", + "dataSourceId": "8be0c504-e521-4952-9560-4a3e626eaf35", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-15T12:05:15.032Z", + "updatedAt": "2023-09-15T12:05:15.032Z" + }, + { + "id": "0b675807-8cb6-44cd-ba56-17b87cd8a493", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "63c2b598-8a90-4450-90f9-d47b0a5c85f6", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.631Z" + }, + { + "id": "049bf73b-094b-41b2-87f3-696f38b505b9", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "localhost", + "encrypted": false + }, + "username": { + "value": "localhost", + "encrypted": false + }, + "password": { + "credential_id": "c83dcbbe-2e56-40c4-a2ae-6600159bff6b", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:53.756Z" + }, + { + "id": "255c07a2-6573-4c92-b3af-d3ce3ef42f5f", + "dataSourceId": "e34a5f6b-1d4e-4404-be57-00bfaabd498a", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "a4b8c404-a080-4329-b50f-ec8942ea7f7e", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-15T12:16:21.616Z", + "updatedAt": "2023-09-15T12:16:21.625Z" + }, + { + "id": "597074ae-9800-4409-91c3-1408410d1c6c", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "928a1535-6acc-48bf-afc7-1e3ae2244a33", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "a63f7287-37f6-414e-8889-b462eb0b57be", + "dataSourceId": "e50d80d3-9e7f-429b-b75c-c9c43a2ca580", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.312Z", + "updatedAt": "2023-09-19T08:22:32.312Z" + }, + { + "id": "6ff92d12-603a-4549-8b9e-9ac1b92e83f5", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "d2674a10-11c2-4a28-81db-1c08cac1fbe0", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "6ab109a4-6f83-4b14-883e-c8c05f46f9c9", + "dataSourceId": "6b1d6c15-ca49-4a94-a663-4785dc77839e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.322Z", + "updatedAt": "2023-09-19T08:22:32.322Z" + }, + { + "id": "b27b0ee7-4fdb-4d8e-9d81-2289498a64f0", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "0e5dcd88-49a1-4d7f-8f10-34d41bed45a5", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "7a2964c8-03a4-48a1-99d4-7a25b61462f3", + "dataSourceId": "e0b34ba6-4c26-4acf-b963-f279e0183d55", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.329Z", + "updatedAt": "2023-09-19T08:22:32.329Z" + }, + { + "id": "2448c268-6dfd-43a6-9555-f68df51b45b6", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "3fcf6c9b-bbf8-45f9-8840-87bddcdddc0f", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "15074c6a-c8f5-409e-9f9b-349152bd5f66", + "dataSourceId": "109c8bf3-ba3a-4e78-94b3-ba3e75551d82", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.334Z", + "updatedAt": "2023-09-19T08:22:32.334Z" + }, + { + "id": "b2c64855-286f-47f5-b790-9fe2cb1e6695", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "ed1aa47d-55b8-42d4-9469-82d8f92ad4d2", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "e4cdf417-b76f-4123-ae6c-41f9667f5669", + "dataSourceId": "8c2aae90-4a9e-4e00-a539-59f5834e4d64", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-19T08:22:32.340Z", + "updatedAt": "2023-09-19T08:22:32.340Z" + }, + { + "id": "3e89cd97-66b5-4ea7-b14f-e590b12e19c4", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "480a763d-7773-43ef-83df-1124a96b1cab", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.635Z" + }, + { + "id": "288a7b6d-b625-4005-93dc-dcd7a8653b24", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "cc151dc1-999e-42b2-93d0-072fa91be3b2", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-21T07:29:39.643Z" + }, + { + "id": "57b35a07-ae7f-46f1-91ed-d34d0273e5bc", + "dataSourceId": "cd507eb0-c0a0-44c0-a7bc-7c738ac8c13e", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "inventory_management", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "93da8ad2-d11c-42c6-ba7f-ac0c7be23251", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-21T07:29:39.623Z", + "updatedAt": "2023-09-22T10:27:25.819Z" + }, + { + "id": "83fcf4c6-ec28-4d1b-8bc9-9a4df406b9d1", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "840bc336-5bad-4442-9305-3355bf5940f4", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "1da83b26-ecef-44f4-b8ca-50e4641656d2", + "dataSourceId": "ca3ac020-88f4-4513-90c6-fd5e6150d4f0", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.030Z", + "updatedAt": "2023-09-21T18:59:47.030Z" + }, + { + "id": "63a0cbae-327e-4ed5-b76f-5842818e84c6", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "200d45fe-aad3-4add-b4ba-751e54521f14", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "cd7e82ec-b280-4a94-9850-159e35af72b3", + "dataSourceId": "e1a7a4a9-aa01-474f-b1ce-831f1e614acd", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.038Z", + "updatedAt": "2023-09-21T18:59:47.038Z" + }, + { + "id": "86d931b7-edf3-4b21-baaf-b150f8dc4fc0", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e880b9ea-a2b2-417f-a164-f1d834506323", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "e91edce3-9ecb-4026-a47a-591a39465333", + "dataSourceId": "f4b097f9-8cb3-4832-9ad9-3cdca5f3ad43", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.045Z", + "updatedAt": "2023-09-21T18:59:47.045Z" + }, + { + "id": "8b5a287f-08dd-42c1-9179-0a55cd4f7310", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "8163b518-d9ef-4714-b33f-8537c0a48903", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "e3ef7c7b-fed2-44c0-87b2-55283ac90e75", + "dataSourceId": "d61ae1ca-9b00-4358-8ac7-28592fc35e30", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.057Z", + "updatedAt": "2023-09-21T18:59:47.057Z" + }, + { + "id": "7b54ce24-7ca8-414a-a72c-d50950eb3949", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "6c514b05-e8d2-4d81-ac64-61d4d09191a4", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "4badeb69-2c38-4c4e-80f3-fc3f58ec2223", + "dataSourceId": "556224ba-ba3c-4982-a814-3d8282aff507", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-21T18:59:47.071Z", + "updatedAt": "2023-09-21T18:59:47.071Z" + }, + { + "id": "adef1faa-4651-478f-a834-1934b4c61a99", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "220eb433-49a8-4d49-84c4-f285536e3868", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "ebfcf35f-2955-4212-967f-cebcddf16c8a", + "dataSourceId": "6047d095-536a-415e-9390-080a49de96f3", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.898Z", + "updatedAt": "2023-09-26T04:59:50.898Z" + }, + { + "id": "7da7ea08-cf60-4404-9031-c83776671656", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "6dbc8c78-986e-4079-bbfb-ce4a200b4bf5", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "0faaacfa-d389-4e66-ac7f-8c93afc5a13e", + "dataSourceId": "e5071878-8281-4f77-917b-a8dff0fe54d1", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.905Z", + "updatedAt": "2023-09-26T04:59:50.905Z" + }, + { + "id": "e345b259-fce4-4b2f-8b19-719427b4eb31", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "8e7ef01c-7c06-47a4-8db2-e45357b24ba1", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "019dd8be-5efd-4428-9bee-a389486c5a32", + "dataSourceId": "5f77eb61-673e-4674-934b-a78ececb92bf", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.912Z", + "updatedAt": "2023-09-26T04:59:50.912Z" + }, + { + "id": "b9b7047b-000c-47cf-bd68-7d6dfbdea44b", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "04c7d955-12a3-451f-a016-c597724f8cd9", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "5a4cc34a-da23-4a08-badd-bb26130a5913", + "dataSourceId": "2d5acab7-29d1-43c7-a80c-e3f8d586fd3c", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.919Z", + "updatedAt": "2023-09-26T04:59:50.919Z" + }, + { + "id": "4f7e0db0-c05a-4a5b-a99b-fdb170901049", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "8fee3e7e-7d30-4fe2-9342-ddb09ad7b6e1", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "3c9adfd7-1064-4999-acb6-b94c5196cc72", + "dataSourceId": "c2924310-d662-4097-aa4b-aede5bb65f34", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-26T04:59:50.925Z", + "updatedAt": "2023-09-26T04:59:50.925Z" + }, + { + "id": "106e6bb8-7d31-4028-a436-2db539aa3ec1", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "private_key": { + "credential_id": "31785b20-89f8-4de5-bf54-1debc1ca261a", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.058Z", + "updatedAt": "2023-09-26T04:59:51.058Z" + }, + { + "id": "6ad412e2-170b-42a5-895f-f841ec47e3c5", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "private_key": { + "credential_id": "0cc48002-fd62-4b80-a02a-a04329030e7d", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.063Z", + "updatedAt": "2023-09-27T06:59:36.470Z" + }, + { + "id": "907f19fe-d074-4cd7-adb5-5cb3353d855c", + "dataSourceId": "be78d8ad-77b1-43b0-a2de-eb2327890ded", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "private_key": { + "credential_id": "4175f457-72d6-4838-b23a-895c9f1479cf", + "encrypted": true + } + }, + "createdAt": "2023-09-26T04:59:51.068Z", + "updatedAt": "2023-09-26T04:59:51.068Z" + }, + { + "id": "78b3f9e0-8124-4d37-8da3-788d35f9f4d3", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "b3f1ca23-5dc4-441a-9ccf-608db6d746e7", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "d85fe433-175b-42b6-afda-4eacc1398a22", + "dataSourceId": "ddbd68a6-16a7-49e3-aac8-4a27a7e9a1a2", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.026Z", + "updatedAt": "2023-09-27T08:20:06.026Z" + }, + { + "id": "fc2da525-f539-454c-824a-8fda6127e9e0", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "3e8cbe50-7a5b-44ba-b366-b80ffee166ff", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "d3181e60-88eb-4ed2-8234-877abb1cca21", + "dataSourceId": "3119f7dc-d91c-4955-a1f0-e50e39ce0678", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.033Z", + "updatedAt": "2023-09-27T08:20:06.033Z" + }, + { + "id": "e05b1995-20c8-4f02-a62c-bb2478baf4ef", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "0899c00c-8a3b-4d41-937c-1925c8958297", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "2358c3c3-e4d1-400f-9069-20186bbdb0a7", + "dataSourceId": "b1b2e06d-13c7-48fd-a5f4-c2456436e763", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.042Z", + "updatedAt": "2023-09-27T08:20:06.042Z" + }, + { + "id": "43b65b50-ddd3-4cdc-8579-b55a404717be", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "65c6b204-5842-490b-9ec6-81e52146ab69", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "08f74263-9282-4214-bb80-fc71196cd104", + "dataSourceId": "97d6039e-4de8-4382-92d0-42d29a01cdb8", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T08:20:06.050Z", + "updatedAt": "2023-09-27T08:20:06.050Z" + }, + { + "id": "2e84b8b5-e7ae-41ca-86bb-4a0d75e3cdbd", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "931c6a61-e93e-42f8-88d0-3069772a01e4", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "035e7958-ac6f-4873-9df1-8c487eeb4d8f", + "dataSourceId": "2ffc2182-39e9-4658-a519-6b46e3ca3c33", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.874Z", + "updatedAt": "2023-09-27T16:45:57.874Z" + }, + { + "id": "edab30b9-76cf-46b8-818f-1f34ef222a77", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "df31bda5-d452-4446-adb6-ae4292cfd6c9", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "209858f9-b486-4105-ab34-75efb3b3faed", + "dataSourceId": "60b18cc7-0369-4e17-a64a-8b1d3c4403bb", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.890Z", + "updatedAt": "2023-09-27T16:45:57.890Z" + }, + { + "id": "230ba931-70ab-44e2-b44a-2f60c96c5361", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "aeba310e-6507-4d43-82eb-ba8861067b36", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "e3415f04-a642-4505-b50c-7ea030a8eaeb", + "dataSourceId": "c882290d-2006-4910-9cf0-be1457d6a5af", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.898Z", + "updatedAt": "2023-09-27T16:45:57.898Z" + }, + { + "id": "f874078b-2a8a-4fe8-b7f8-fdefa9c8beaf", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": null, + "createdAt": "2023-09-27T16:45:57.905Z", + "updatedAt": "2023-09-27T16:45:57.905Z" + }, + { + "id": "2bfb1a7c-823e-4359-b049-4a61db34b911", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "5bb80934-9d75-49cc-a9a3-3e8bb3b90c34", + "dataSourceId": "71791151-f593-48ed-96ec-771d8442a2ae", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": null, + "createdAt": "2023-09-27T16:45:57.906Z", + "updatedAt": "2023-09-27T16:45:57.906Z" + }, + { + "id": "a8648171-928a-48ef-ac7c-2d1cb8bbae6d", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "7fd0ea56-a4c5-421c-ac04-c707fd30037a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.609Z" + }, + { + "id": "7078020a-7967-4597-82fc-a31f0b1cf21e", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "991135d2-7671-45ed-b316-63f03b7a34f0", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-09-28T18:48:40.615Z" + }, + { + "id": "d3532cce-f05c-4157-b482-d4632ef19c0c", + "dataSourceId": "fa110b5a-3396-4eea-b768-625c6e95d485", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "35.193.152.84", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "72f1b57e-ed9d-4eb1-b628-d35d0d6bec78", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-09-28T18:48:40.592Z", + "updatedAt": "2023-10-03T13:27:33.903Z" + }, + { + "id": "5751c539-28cc-4065-b4f2-f321bbe3ee23", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "e97c34c1-13bc-4b5f-b240-cc7acc59541a", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.799Z" + }, + { + "id": "a765cdaa-0387-461c-bdaa-63b5353028c0", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "8b910d98-de4b-4e9a-bd11-c9004aa81e48", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.805Z" + }, + { + "id": "bf2ce691-b6e1-442b-a649-793d30a9db60", + "dataSourceId": "a47b2b04-21bc-477c-a229-ed5d1a52ecce", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c4cb2ddd-2504-4457-971e-18f96940393f", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:31:14.791Z", + "updatedAt": "2023-10-09T10:31:14.806Z" + }, + { + "id": "512396b8-88c7-4964-a57d-0236373d14fd", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "c3673de1-1377-4752-b9a9-743ac1ec76a5", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.642Z" + }, + { + "id": "5ea174ed-1189-4646-b93a-05e4ced753b9", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4", + "options": { + "host": { + "value": "54.151.107.253", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "elevation_demo", + "encrypted": false + }, + "username": { + "value": "postgres", + "encrypted": false + }, + "password": { + "credential_id": "d9ad9526-6249-4615-b7c6-e0e0f6425658", + "encrypted": true + }, + "ssl_enabled": { + "value": false, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:36:58.100Z" + }, + { + "id": "7ab8dd61-1478-4003-b7e3-c9546edcd991", + "dataSourceId": "3d98ac45-f389-4012-89c3-4981b7a6ff44", + "environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc", + "options": { + "host": { + "value": "localhost", + "encrypted": false + }, + "port": { + "value": 5432, + "encrypted": false + }, + "database": { + "value": "", + "encrypted": false + }, + "username": { + "value": "", + "encrypted": false + }, + "password": { + "credential_id": "1ad53f8b-ec0e-4492-ac40-24185178d044", + "encrypted": true + }, + "ssl_enabled": { + "value": true, + "encrypted": false + }, + "ssl_certificate": { + "value": "none", + "encrypted": false + } + }, + "createdAt": "2023-10-09T10:33:56.633Z", + "updatedAt": "2023-10-09T10:33:56.650Z" + } + ], + "schemaDetails": { + "multiPages": true, + "multiEnv": true, + "globalDataSources": true + } + } + } + } + ], + "tooljet_version": "2.19.2-ee2.7.0-cloud2.0.9" +} \ No newline at end of file diff --git a/server/templates/supply-chain-management/manifest.json b/server/templates/supply-chain-management/manifest.json new file mode 100644 index 0000000000..47a3a21cd5 --- /dev/null +++ b/server/templates/supply-chain-management/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "Supply chain management", + "description": "The Supply Chain Management template optimizes operations with a Main Dashboard for KPIs, Product Inventory for stock management, and All Orders for tracking and updates.", + "widgets": ["Table", "Chart"], + "sources": [ + { + "name": "Tooljet Database", + "id": "tooljetdb" + } + ], + "id": "supply-chain-management", + "category": "operations" +} diff --git a/server/test/controllers/library_apps.e2e-spec.ts b/server/test/controllers/library_apps.e2e-spec.ts index ebd5dd15fd..12bb5cdefd 100644 --- a/server/test/controllers/library_apps.e2e-spec.ts +++ b/server/test/controllers/library_apps.e2e-spec.ts @@ -42,12 +42,12 @@ describe('library apps controller', () => { response = await request(app.getHttpServer()) .post('/api/library_apps') - .send({ identifier: 'github-contributors' }) + .send({ identifier: 'supply-chain-management' }) .set('tj-workspace-id', adminUserData.user.defaultOrganizationId) .set('Cookie', adminUserData['tokenCookie']); expect(response.statusCode).toBe(201); - expect(response.body.name).toContain('GitHub Contributor Leaderboard'); + expect(response.body.app[0].name).toContain('Supply Chain Management'); }); it('should return error if template identifier is not found', async () => {